[android-developers] Re: Problem loading gadget

2011-04-08 Thread String
Sigh. It's not ONLY the XML, I just cited that as one example. My point is that this message can be easy to stumble into when upgrading your app. You need to be quite diligent about testing the upgrade process BEFORE you release it to the Market. But all that's for future reference if you've

[android-developers] How to properly implement a custom AdapterView's setSelection method

2011-04-08 Thread Adam
I'm working on designing a HorizontalListView widget and I'm getting stuck on what to do with the setSelection methods. It seems like every example of extending an ArrayAdapter never touches this method. I can have a long list, so filling to the right from 0 - my position isn't an option. Ideally

[android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
Im having trouble smoothing out a hand made animation, specifically the logo on my site at www.users.on.net/~rossn The spinning sections of the logo are redrawn every frame rather a pair of rotating images, because rotating is slow and sometimes looks bad with poor rotation algorithms on other

[android-developers] Get Row Id of draggable and droppable listview

2011-04-08 Thread Chung Truong
Hi, I'm building a project using draggable and droppable listview. I found the source code of creating draggable and droppable listview supported by google. In my project , there are 4 items in listview ( search, list, history and shortcut). Each item in listview interacts with each activity. The

[android-developers] Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Hi all, In my application I am using marquee. It works perfectly, but when I rotate screen then it is not working. following is my code. public class TextViewMarquee extends Activity { private TextView tv; @Override protected void onCreate(Bundle savedInstanceState) {

Re: [android-developers] Re: How do i upload the file from android mobile to public server

2011-04-08 Thread snehalal gangadharam
hi, y i didnt get any reply? i have tested this application from real device. i am getting IO Exception. i have posted the errror log below: kindly guide me to solve this problem. /kernel ( 115): [ 508.395324] device rmnet0 entered promiscuous mode W/System.err( 1281): java.io.IOException:

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread Zsolt Vasvari
Create a bug report on http://b.android.com I dont' see anything wrong with your code. Using the emulator, try to determine on which Android SDK level it broke on and file a bug report. Put Regression, Honeycomb and 3.0 in the title, if it applies so that you get some Google people to pay

Re: [android-developers] Re: How do i upload the file from android mobile to public server

2011-04-08 Thread Abhilash baddam
Hi, may be this link will be helpful to u.. http://androidsnips.blogspot.com/2011_03_01_archive.html On Fri, Apr 8, 2011 at 11:36 AM, snehalal gangadharam snehala...@gmail.comwrote: hi, y i didnt get any reply? i have tested this application from real device. i am getting IO

[android-developers] RelativeLayout subclass ignoring explicit background color

2011-04-08 Thread Brill Pappin
I'm using a custom list item subclassed from a RelativeLayout, but the layout seems to be ignoring the background colour: my class looks like this: public class MyListItem extends RelativeLayout { public MyListItem(Context context) { super(context); } public MyListItem(Context

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Hi, Zsolt Vasvari Thanks for reply. When I tried above code with large string message then marquee works properly. Is that mean marquee useful for only large string i.e to show large line data which is not fit into screen size? On Apr 8, 11:56 am, Zsolt Vasvari zvasv...@gmail.com wrote: Create a

[android-developers] Getting started with Android NDK

2011-04-08 Thread Atul Prakash
Hi, I have to use NDK for porting of my C/C++ code into ANDROID Game. Now that I am having problem to start with NDK. I have downloaded the NDK-r5b from developer.android.com But now, I am not even able to run the Hello-jni program provided within NDK samples. I have installed CYGWIN When i

[android-developers] HttpURLConnection responsecode 414-url too long issue

2011-04-08 Thread imran ali
Hi all, i have to download data but having big ur,l it's character is going to increase more than 4048, for small url it is working fine but for big url it has been giving response code 414- url too long. what would be feasible way to handle this issue? example of url is

Re: [android-developers] Re: resizing the touch event generating area

2011-04-08 Thread Dianne Hackborn
Well sure if the device you are on can only recognize N fingers and the user has N+1 fingers, you aren't going to get a happy result. I'm not sure this is even worth thinking about. It's a limitation of that device, the user is going to live with this in every single part of the UI of that

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Dianne Hackborn
I wouldn't suggest having a handler sitting there trying to post messages to itself as fast as possible. You are just writing code that sits there consuming every bit of CPU it can get for no useful reason. Either use postMessageDelayed/AtTime() to actually have controlled timing, or just do

[android-developers] Re: Running multiple Services in Android

2011-04-08 Thread gjs
Hi, Services can run in there own separate processes if necessary you can also start run more threads in a service. http://developer.android.com/guide/topics/manifest/service-element.html Regards On Apr 8, 2:04 am, declantraynor dec...@gmail.com wrote: Hi, I'm currently building some

[android-developers] Setting screen on/off

2011-04-08 Thread luiX_
Hi, I'm trying to develop something similar to the proximity event of the dialer during a call, this is: when something is near the proxmity sensor turn off the screen and when there's not power it on again. I've had no problem making the sensor's events work, that was easy, but I'm having a lot

Re: [android-developers] Re: Running multiple Services in Android

2011-04-08 Thread Dianne Hackborn
No please please do NOT run things in a separate process for this. That is a huge waste, for no reason. Since the sensor API is all callback based, there is no problem here. The callbacks will happen on the main thread. The main thread should always be responsive. No problem. If your other

Re: [android-developers] Setting screen on/off

2011-04-08 Thread Dianne Hackborn
Doing this kind of stuff from third party apps isn't really supported. You may be able to hack up a somewhat working solution, but I don't think you can actually implement a fully working robust solution with the SDK APIs. On Fri, Apr 8, 2011 at 12:24 AM, luiX_ lui...@gmail.com wrote: Hi,

Re: [android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread Abhilash baddam
Hi pramod, For me also it's working, whenever the string length is more. So that i have given the string like this string On Fri, Apr 8, 2011 at

[android-developers] Re: How to eliminate paint sawtooth

2011-04-08 Thread a a
2011/4/8 a a harvey.a...@gmail.com: I draw a 30 degree line with paint,  but it seams not smoothness. How can i eliminate the sawtooth? my code below:            mPaint.setColor(Color.WHITE);            mPaint.setAntiAlias(true);            mPaint.setStrokeCap(Paint.Cap.ROUND);          

[android-developers] Re: How to retrieve a JSON object from a php url to my android

2011-04-08 Thread Aleprex
look here, there are videos and the code attached that explain how to do http://www.embarcadero.com/rad-in-action/php-android On 7 Apr, 06:14, Jency Johnson jen...@gmail.com wrote: Hi, I am having this code             HttpClient client = new DefaultHttpClient();             HttpGet request

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread Zsolt Vasvari
Yes, that's correct. The marquee is only used when the text doesn't fit its container. On Apr 8, 3:06 pm, pramod.deore deore.pramo...@gmail.com wrote: Hi, Zsolt Vasvari Thanks for reply. When I tried above code with large string message then marquee works properly. Is that mean marquee

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Hi Abhilash, for lengthy string its working. try with smaller String like Test String and let me know marquee is working or not? I am using 2.1 Update1. API level is 7 On Apr 8, 12:37 pm, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi pramod,                 For me also it's

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Ok Zsolt Vasvari. Thanks for confirming. On Apr 8, 1:09 pm, Zsolt Vasvari zvasv...@gmail.com wrote: Yes, that's correct.  The marquee is only used when the text doesn't fit its container. On Apr 8, 3:06 pm, pramod.deore deore.pramo...@gmail.com wrote: Hi, Zsolt Vasvari Thanks for

Re: [android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread Abhilash baddam
Hi Pramod, For small String its not working i am also using the same version. On Fri, Apr 8, 2011 at 1:42 PM, pramod.deore deore.pramo...@gmail.comwrote: Hi Abhilash, for lengthy string its working. try with smaller String like Test String and let me know marquee is working or

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
On Friday, April 8, 2011 4:51:23 PM UTC+9:30, Dianne Hackborn wrote: I wouldn't suggest having a handler sitting there trying to post messages to itself as fast as possible. You are just writing code that sits there consuming every bit of CPU it can get for no useful reason. Either use

[android-developers] Audio initialization and recording

2011-04-08 Thread Kamil
Hi, I'm having problem with audio initialization in Android. When application starts recording in logcat appears message I/libpjsip( 2248): 15:19:25.328 android_jni_de Record thread : error while reading data... is there something we can do here? -3 D/libpjsip( 2248): 15:19:25.328

[android-developers] Intent not received after application started

2011-04-08 Thread Gorka
Hi, I am trying to read NFC tags with my Nexus S mobile. In my Manifest file I have the intent filtered: intent-filter action android:name=android.nfc.action.NDEF_DISCOVERED/ data android:mimeType=*/* / category

Re: [android-developers] Re: Thread and ProgressDialog

2011-04-08 Thread Kapil Lokhande
Hi, you have to dissmiss progressdialog at the end of the method which you calling in thread bu using runonUIThread method. -- Thanks Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. http://dexterltd.com/ | Android Developer [image: dexterlogo.jpg] On Fri, Apr 8, 2011 at 10:53 AM, pankaj

[android-developers] In-app billing problem

2011-04-08 Thread Ivan
Hi guys, I'm trying to integrate in-app billing in an app but for some reason I can't get the Dungeons sample app to work, even with static responses. What I've done is: - i've setup a publisher and merchant accounts - copied my public key from publisher profile in base64EncodedPublicKey

Re: [android-developers] Android Playing YouTube video in WebView

2011-04-08 Thread Kapil Lokhande
Hi, Use webview client. best example is on android developers | webview. go to http://developer.android.com/resources/tutorials/views/hello-webview.html -- Thanks Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. http://dexterltd.com/ | Android Developer [image: dexterlogo.jpg] On Thu, Apr

Re: [android-developers] Re: Tab Layout not working

2011-04-08 Thread Kapil Lokhande
Hi, As u mentioned u r new to android. You may forget to declare tabs individual activity in manifest. -- Thanks Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. http://dexterltd.com/ | Android Developer [image: dexterlogo.jpg] On Thu, Apr 7, 2011 at 9:34 PM, TreKing treking...@gmail.com

Re: [android-developers] Re: Honeycomb Sourcecode

2011-04-08 Thread Marcin Orlowski
On 7 April 2011 21:06, JAlexoid (Aleksandr Panzin) jalex...@gmail.comwrote: Why would you need Honeycomb source? To see how some things are done? Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule handy... WebnetMobile on *Facebook

Re: [android-developers] Help in android code syntax

2011-04-08 Thread Marcin Orlowski
On 8 April 2011 06:50, ahens h ahens...@gmail.com wrote: i want to write the same thing in android, can you people please help me out in this and let me know.. There's no writting in android. It's writting in Java Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you

[android-developers] Re: Parsing data from a calender on a website

2011-04-08 Thread Jens
You should probably include the URL of the calendar application (if you can) if you expect any sort of useful response. But, since you've posted a question for an online calendar that apparently (?) loads the calendar dynamically with javascript you could try checking if the calendar uses any

[android-developers] Re: Method startActivity is called twice from click on notification

2011-04-08 Thread Karussell
On stackoverflow it was confirmed that it is a samsung bug: http://stackoverflow.com/questions/5538969 How to report bugs to samsung? Regards, Peter. -- http://jetwick.com - Personalized Twitter Search On 5 Apr., 00:11, Karussell tableyourt...@googlemail.com wrote: The strange thing is that

Re: [android-developers] How to use charts in android

2011-04-08 Thread Marcin Orlowski
On 7 April 2011 07:31, amey bura ameybur...@gmail.com wrote: I want use charts in my application.. Actually i want to draw varoius charts for example bar /pie chart by using the values from database.. so can anyone tell me how do i pass the values from my app to xml programs which is used for

[android-developers] Re: OpenGL ES for Android tutorial

2011-04-08 Thread Jens
GDC 2011 had a better example for OGLES2.0 https://code.google.com/p/gdc2011-android-opengl/ On 5 Apr, 18:41, J javier.sed...@gmail.com wrote: Hi,   anybody can sugest a tutorial for OpenGL ES on Android?   The official documentation is not very extensive... Thanks, J -- You received

[android-developers] From I get API used in Script

2011-04-08 Thread rahul
Hi, I have written the following commands : import android import time ab = android.Android(1) ab.makeToast(Its rahul) in python file for blinking the name in the emulator screen and it works. I am using SDK2.2 platform with ASE_r_25. Maketoast is API. I just want to know all the APIs supported

Re: [android-developers] Re: How do i upload the file from android mobile to public server

2011-04-08 Thread Nicholas Johnson
It seems like your error is occurring at line 203 in the FtpURLConnection class. Find out what's at the line, and you'll be closer to solving your problem. W/System.err( 1281): at org.apache.harmony.luni.internal.net.www.protocol.ftp.FtpURLConnection.connect(FtpURLConnection.java:203) --

Re: [android-developers] In-app billing problem

2011-04-08 Thread Kostya Vasilyev
Ivan, I have same exact setup, also Milestone 2.1.1, and the rest is the same. Buying test items worked yesterday, but is not working now, same as for you: the transaction never completes. Looks like something in billing is just broken right now. I wonder how well it's going to work in

[android-developers] How do i Download the Mp3 file from server

2011-04-08 Thread Riyas
Am a newbie to android development .Please let me know how can i download MP3 file from my server to my android sdcard folder. Please help me out. -Riyas -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Getting a delay between starting current activity after returning from startActivityForResult()

2011-04-08 Thread Kacee
Hello guyz, I am facing problem with starting MainActivity again and perform remaining tasks, after returning from startActvityForREsult() My code structrue goes like: MainActivity{ // this method calls different activities of my application based on the result of onActivityResult

Re: [android-developers] Getting started with Android NDK

2011-04-08 Thread Mark Murphy
On Fri, Apr 8, 2011 at 3:08 AM, Atul Prakash atul.prakas...@gmail.com wrote: I have to use NDK for porting of my C/C++ code into ANDROID Game. Now that I am having problem to start with NDK. Questions regarding the NDK are better asked on the [android-ndk] Google Group. -- Mark Murphy (a

Re: [android-developers] Re: Video Call Recording Feature

2011-04-08 Thread Mark Murphy
There is no support for video calling in Android. On Fri, Apr 8, 2011 at 12:36 AM, Guna skarthikare...@gmail.com wrote: Can someone pls respond! On Mar 31, 10:17 am, Guna skarthikare...@gmail.com wrote: Please let me know whetherVideoCallRecordingis possible on Android Phones any version

Re: [android-developers] Amazon MP3 store intents - quick how to.

2011-04-08 Thread Mark Murphy
On Thu, Apr 7, 2011 at 5:23 AM, Kent goo...@yourarcade.com wrote: It has been pretty difficult to track down information on interacting with the Amazon MP3 application. I do not believe that there are any documented and supported ways to interact with the Amazon MP3 application. Intent i =

[android-developers] change icon notification when we drag

2011-04-08 Thread booooooooooooo
Hi All I would like to know is it possible to change different icon for notification when will drag status bar in notification list ? please help me any one thanks regards vinod -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Problem with ListAdapters and Cursors

2011-04-08 Thread Duskox
Hello people, so I am trying to build a somewhat simple app where I am working with an array of objects where is of those objects had also an array of other objects. I have made this array a public variable and placed it in a class that extends Application. ( I found that on the net as the best

[android-developers] ListView + Activity change

2011-04-08 Thread skera
Hi! I created a ListActivity with 5 items. My goal: when I click on an item, the app switches to an other activity. I've tried with this code: protected void onListItemClick(ListView l, View v, int position, long id) { .. Intent i1 = new Intent(thisActivity.this, otherActivity.class); // also

[android-developers] Re: ListView + Activity change

2011-04-08 Thread Duskox
did you define it in applicationmanifest.xml? On Apr 8, 1:59 pm, skera szrnka.pe...@gmail.com wrote: Hi! I created a ListActivity with 5 items. My goal: when I click on an item, the app switches to an other activity. I've tried with this code: protected void onListItemClick(ListView l,

[android-developers] Re: HttpURLConnection responsecode 414-url too long issue

2011-04-08 Thread loweroctave
http://developer.android.com/reference/org/apache/http/client/methods/HttpPost.html On Apr 8, 3:18 am, imran ali imran...@gmail.com wrote: Hi all, i have to download data but having big ur,l it's character is going to increase more than 4048, for small url it is working fine but for big url

[android-developers] Re: ListView + Activity change

2011-04-08 Thread skera
Yes, I did. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: ListView + Activity change

2011-04-08 Thread Duskox
It was an error I made a few times :) Don't know then, does the new class extend Activity? On Apr 8, 2:11 pm, skera szrnka.pe...@gmail.com wrote: Yes, I did. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: ListView + Activity change

2011-04-08 Thread loweroctave
Intent i = new Intent(this, yourNewClass.class); startActivity(i); If you get an error with that, post the exact runtime error you're getting and we can tell you what's wrong. On Apr 8, 8:11 am, skera szrnka.pe...@gmail.com wrote: Yes, I did. -- You received this message because you are

[android-developers] Re: Device Admin - Email account policy enforcement - pop and exchange

2011-04-08 Thread String
On Friday, April 8, 2011 6:16:12 AM UTC+1, progtad wrote: I would still like to get confirmation that this is not possible if I could. This is a corporate requirement I am looking into. I've been able to implement several of the requirements for android phones use acceptance but this one

[android-developers] Re: ListView + Activity change

2011-04-08 Thread skera
Problem solved :) The other class I extended the Activity class and implemented the AdapterView.OnItemSelectedListener which is necessary for a Spinner. I've deleted the implements part of the code, and now I can switch between the activites. But in activity2 the spinner selector doesn't work. --

[android-developers] Re: ListView + Activity change

2011-04-08 Thread skera
I think I'll use Checkbox instead of Spinner. :) Thanks for your help! :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: ListView + Activity change

2011-04-08 Thread loweroctave
You don't have to implement the listener on the activity to use it. You can just make a new OnItemSelectedListener and then use spinnerControl.setOnItemSelectedListener(listener) to achieve the same thing. Of course first you'll have to grab a reference to the spinner with findViewById. On Apr

[android-developers] Regarding Video Recording

2011-04-08 Thread yogendra G
Hi All, Require Proper Code for Video recording for my app so please some one help me in this coding coz am android beginner so.. Regards, Yogi -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] ANR Problem with FLAG_NOT_TOUCHABLE

2011-04-08 Thread luiX_
Hi, i'm trying to make a workaround for the inCall problem I was having. Now, I'm trying to just set a low brightness and disable touch events, something like this: @Override public void onSensorChanged(SensorEvent event) { Log.w(LOG_TAG, onSensorChanged: + event.values[0]); if

[android-developers] Re: Problem with ListAdapters and Cursors

2011-04-08 Thread Duskox
I guess it is either too complicated question or badly asked. To simplify it: Here is one class definition. Class x { string mName; int mID; ArrayList mTmrs; } in the class that extends application I create a public variable like this: public ArrayList mList; in that list I insert several

[android-developers] Re: Problem with ListAdapters and Cursors

2011-04-08 Thread loweroctave
Put a get and set function in your application class that lets you interact with the variable you need to pass around. Then in your listactivity class get a reference to the application class with getApplicationContext();. As far as getting it into the list, you just need to put it into an

[android-developers] Re: Problem with ListAdapters and Cursors

2011-04-08 Thread loweroctave
Sorry those should be ListAdapters not ArrayAdapters. A question about a spinner got me all mixed up. On Apr 8, 8:50 am, loweroctave twinte...@gmail.com wrote: Put a get and set function in your application class that lets you interact with the variable you need to pass around.  Then in your

[android-developers] Re: Problem with ListAdapters and Cursors

2011-04-08 Thread Duskox
Thanks!! :) On Apr 8, 2:55 pm, loweroctave twinte...@gmail.com wrote: Sorry those should be ListAdapters not ArrayAdapters.  A question about a spinner got me all mixed up. On Apr 8, 8:50 am, loweroctave twinte...@gmail.com wrote: Put a get and set function in your application class

Re: [android-developers] Re: Problem with ListAdapters and Cursors

2011-04-08 Thread Kostya Vasilyev
ArrayAdapter works fine with a ListView, and is easer to get going. 08.04.2011 16:55, loweroctave пишет: Sorry those should be ListAdapters not ArrayAdapters. A question about a spinner got me all mixed up. -- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message

[android-developers] Re: Thread and ProgressDialog

2011-04-08 Thread Emanuel Moecklin
Unfortunately it's much more complicated that it looks like. Check out this thread: http://bit.ly/i5e9Eq Cheers Emanuel Moecklin On Apr 6, 12:45 am, SD315 sailer...@gmail.com wrote: Hello, i'm trying to do some work in a thread while showing a progress dialog until the work is done in the most

[android-developers] Re: Remote access to phones

2011-04-08 Thread kypriakos
Hi all - trying this once again - has anyone managed to access Android phones remotely with ssh? Any hits you can share that would certainly help. Thanks On Apr 5, 3:48 pm, kypriakos demet...@ece.neu.edu wrote: Hi all, I am trying to figure out a way to access the htc phones (running

Re: [android-developers] Re: Remote access to phones

2011-04-08 Thread Kostya Vasilyev
I haven't, but you may want to ask on android-porting. Those folks deal with setprop and ports much more than us humble SDK users :) -- Kostya 08.04.2011 17:20, kypriakos пишет: Hi all - trying this once again - has anyone managed to access Android phones remotely with ssh? Any hits you can

[android-developers] 3d engine advices

2011-04-08 Thread emre onal
Hi I've some background in 3d desktop programming. I've also developed some 2d games on android. I'll start 3d programming in android. I think using an engine would be better rather than using opengl directly. Do you mind sharing your experiences on 3d engines? These are some engines I've found:

[android-developers] Eclipse linux error

2011-04-08 Thread Raghav Sood
Hi, I know that this question is better suited to Ubuntu Forums but I have already tried there and received no reply. I installed the SDK, eclipse, adt plugin and completed all the steps to set up a development environment. This entire setup worked for only one day. The next day when I tried

[android-developers] Widgets: Lanscape vs Portrait

2011-04-08 Thread Jake Colman
I have a 2x1 widget with two textviews, aligned top and bottom to the baseline, that display fine in Portrait. When I switch to landscape, there is insufficient room for the two textviews (the widget becomes long and narrow) so the two textviews overlap each other. What is the correct way to

[android-developers] Re: Parsing data from a calender on a website

2011-04-08 Thread harsh chandel
hi you can use the saxparser or dom parser you can find example on android developer. to put the whole data in your application and then use it. On Apr 6, 8:52 pm, Neutron_boy arctikz...@gmail.com wrote: I am fairly new to Android, but have some experience reading and understanding code,

Re: [android-developers] Eclipse linux error

2011-04-08 Thread luiX_
I had a similar problem, what eclipse version are you using? I downloaded Helios, and then had to download the provious version (the recommended one) to finalize the configuration and then I can use Helios as usually... 2011/4/8 Raghav Sood raghavs...@gmail.com Hi, I know that this question

Re: [android-developers] Widgets: Lanscape vs Portrait

2011-04-08 Thread Kostya Vasilyev
08.04.2011 19:25, Jake Colman пишет: I have a 2x1 widget with two textviews, aligned top and bottom to the baseline, that display fine in Portrait. When I switch to landscape, there is insufficient room for the two textviews (the widget becomes long and narrow) so the two textviews overlap each

Re: [android-developers] Eclipse linux error

2011-04-08 Thread Raghav Sood
Hi, Thanks luiX_ I am using Helios. So are you saying that I download the previous version configur it and then Helios will work? Thanks On Fri, Apr 8, 2011 at 9:29 PM, luiX_ lui...@gmail.com wrote: I had a similar problem, what eclipse version are you using? I downloaded Helios, and then

Re: [android-developers] ANR Problem with FLAG_NOT_TOUCHABLE

2011-04-08 Thread Dianne Hackborn
What is the stack reported for your app ANR? (You can find it in /data/anr/traces.txt). It's possible this is just a platform bug. Changing a window like this is probably not something anyone else has done. If it is a platform problem it could also vary significantly across platform releases

Re: [android-developers] Eclipse linux error

2011-04-08 Thread luiX_
Yep, it worked for me :) 2011/4/8 Raghav Sood raghavs...@gmail.com Hi, Thanks luiX_ I am using Helios. So are you saying that I download the previous version configur it and then Helios will work? Thanks On Fri, Apr 8, 2011 at 9:29 PM, luiX_ lui...@gmail.com wrote: I had a similar

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Dianne Hackborn
On Fri, Apr 8, 2011 at 1:16 AM, Numeron numeronreac...@gmail.com wrote: I wouldnt have thought it would work like a busy method if its adding itself to something like an event queue or whatever, but I'll take your word on it. Well it is going to continually execute messages, even if it isn't

[android-developers] Re: HttpURLConnection responsecode 414-url too long issue

2011-04-08 Thread Hari Edo
As another poster was hinting, this is a job for HTTP POST, not HTTP GET. GET puts all arguments into the URL. POST puts a short URL, and then adds all of the arguments to the hidden handshaking conversation that follows the network connection. The good news is that many CGI programs don't

Re: [android-developers] How do i Download the Mp3 file from server

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 5:25 AM, Riyas abdrahma...@gmail.com wrote: Am a newbie to android development Read the documentation. - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago

Re: [android-developers] Regarding Video Recording

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 7:39 AM, yogendra G yogi2...@gmail.com wrote: Require Proper Code for Video recording for my app so please some one help me in this coding coz am android beginner so.. ... so RTFM.

Re: [android-developers] Getting a delay between starting current activity after returning from startActivityForResult()

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 5:44 AM, Kacee komal...@gmail.com wrote: Please help :( Try removing the Clear Top flag. - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit

[android-developers] Re: Honeycomb Sourcecode

2011-04-08 Thread Hari Edo
On Apr 7, 3:06 pm, JAlexoid (Aleksandr Panzin) jalex...@gmail.com wrote: Why would you need Honeycomb source? I think the issue is not need vs want. Yet. It's doing the right thing. If a network router uses some open-licensed code, but doesn't provide the sources, they are rightly brought

[android-developers] deepan_android

2011-04-08 Thread Williams Deepan
Hi All, I have joined as new member. for your kind reference , I am android developer. Thanks, Williams Deepan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] internet connection problem using emulator. can you help??

2011-04-08 Thread jay
Hi We have an issue when Android emulator runs for several hours or sometimes even when we star it up, the internet connection is breaks and does not come back on the emulator. In the server running the internet the internet is fine. In the log, there is two sorts of exception for internet

[android-developers] local and remote database synchronization

2011-04-08 Thread kamal g.c
I need to write the application where the application should be able to provide full functionality in offline mode(Internet dis- connection). so, I am going fetch the required data at once and use it for the offline mode.. and the save data from my application will be store in the local mobile

[android-developers] Racoon is not initiating a connection with x509 L2TP/IPSec

2011-04-08 Thread Bart
Hello all, I am trying to setup a VPN connection on Android v2.2.2. I am currently unable to connect to my VPN server. The VPN server is Openswan which is running with xl2tpd. I am using X. 509 certificates to identify clients. Android does not seem to initiate a connection to the VPN server,

[android-developers] Share the theme among all the projects in android

2011-04-08 Thread judy
Hi,I want to share the theme among all the projects in android,which effect is like HTC skin.How can I implement this function? I study the AssetManager. Can I add the resource.arc(which is like the framework- res) to all the projects with AssetManager? I modify the ActivityThread as the following

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Ok. In HTML we can use marquee for small string so I thought in Android it also worked. Ok Thanks guys. On Apr 8, 1:16 pm, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi Pramod,                For small String its not working i am also using the same version. On Fri, Apr 8,

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 15 Topics

2011-04-08 Thread syed sikandarpasha quadri
Hi , i'm doing my final year project and i am new to this technology. In my first UI i need a google map and i successfully integrated google map to my app,But i need a seach button on top of the UI and it should pop-up the particular location on that has entered in search option. please

[android-developers] How to use xml

2011-04-08 Thread amey bura
I am trying to search how to pass values from activity to xml file which is used for displaying charts.. anyone know how to do this?? plz send me a link.. any suggestions are welcome...! -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: CallLog.Calls filter by date

2011-04-08 Thread tan
Hi. I'm facing the same issue. My requirement is to get calls from the call log after a certain date. The following statement does not give error, but always fetches the whole list: Cursor c = DirectoryListing.mainActivity.getContentResolver().query(

[android-developers] Streaming youtube video

2011-04-08 Thread Rahil Bolar
Hello I need an example source of streaming RTSP youtube video's inside a Video view -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] How Entry Uri 's are generated insides each plan in CTS?

2011-04-08 Thread ganga
We have Some plans in Android CTS.In each plan we have some Entry Uri's How these are generated.i.e in which file the code is written to generate that Entry uri's in each plan. Supose In Cts we have Android plan .we open that Android.xml plan we see like below::: Android.xml: ?xml version=1.0

[android-developers] Possible to use bouncy castle package in android sdk

2011-04-08 Thread nivethaashree babu
Is is possible/ compatible to include bouncy castle jar file in android sdk thanks in advance With regards K.Nivethaa Shree -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Do I need to make an app for each Brand?

2011-04-08 Thread dwrune
Hi, We are looking intop make some apps for internal use. Our developer claims that andriod mobilephone solution needs to be developed for each brand. I'm a bit amazed that the most common buttons aren't standardized. Further more inbuilt feautes like camera, speaker and microphone are they

[android-developers] How to use obtainStyledAttributes to get a String from a Theme

2011-04-08 Thread nobody
Hi, I have declared a styleable like this: declare-styleable name=Test attr name=myString format=string / attr name=myNumber format=integer / /declare-styleable I'm using this with the following java code in a constructor of a custom View class: TypedArray a =

[android-developers] zxing library in my application

2011-04-08 Thread nikvaf
Hi all, i have some questions as far as the zxing library is concerned. I have already integrated the zxing library on my project but i can't configure the way that zxing handles the qr codes after scanned them. So, i want to decode something that i have encode and then do something, but my

[android-developers] how do i devlope an android keybord

2011-04-08 Thread ariel
i try to dwonload SoftKeyboardLanguagePackTemplate but it dont run like keybord -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Ok Abhilash thanks. I thought it work like HTML marquee. So it means If I want marquee like feel then it will worked only if String os not fit in container. On Apr 8, 1:16 pm, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi Pramod,                For small String its not working

  1   2   >