[android-developers] How to make a text scroll automatically

2008-05-15 Thread learner
Hi All, How can i make a text to scroll automatically inside a text view when an event accurs. Please help me otu Thanks in advance Learner Desire to learn --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android De

[android-developers] Will gdata API available and documented in next SDK release?

2008-05-15 Thread babyblue
Thanks and BTW, when will new SDK be released? If the answer is no, I think I will try to implement the proctol by myself. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gro

[android-developers] Re: Web Service Deployment

2008-05-15 Thread Megha Joshi
Hi, For Android there is no official policy or APIs about using web services. However, it is better to stick with the light weight options, one of which would be to use REST+JSON. Android includes the Apache HttpClient, using which you can easily implement client-server communication. Thanks

[android-developers] Re: Web Service Deployment

2008-05-15 Thread rscn
You can download and run thttpd on the linux. You can then do a simple http post and get. On May 15, 1:38 pm, Bruno Sauer <[EMAIL PROTECTED]> wrote: > there doesn't appear to be any web services client support available with > Android so that's a good indication that it will not be possible (

[android-developers] Re: Web Service Deployment

2008-05-15 Thread Bruno Sauer
there doesn't appear to be any web services client support available with Android so that's a good indication that it will not be possible (without a lot of effort) to drop a server such as Apache Tomcat with Axis on a "phone" either. Although the term "phone" is a misnomer - it should be ob

[android-developers] Re: JUnit

2008-05-15 Thread vol
I'm having a bit of trouble using Positron. Is there any way to contact someone to ask for help? On May 9, 11:38 am, vol <[EMAIL PROTECTED]> wrote: > Great. Thanks! > > On May 7, 2:33 pm, Steve918 <[EMAIL PROTECTED]> wrote: > > > You might want to check out Positron. > > >http://code.google.com/p

[android-developers] Re: Installing Android on real phone

2008-05-15 Thread rwozniak
Hello, there has been a sucessfull attempt to run Adroid on Nokia N810. You can read about it here: http://www.talkandroid.com/65-google-android-nokia-n810/ I haven't heard of any other consumer devices able to run Android yet, I guess we have to wait till the end of this year. Roman On 13 Ma

[android-developers] Re: How can I call apk to run???

2008-05-15 Thread vol
To invoke an activity from another activity, create an Intent that specifies the other activity by class name, or by an intent which the other activity is set up to recieve. Then, call startActivity or startSubActivity using that intent. Please look at the tutorial for more help with this. To sta

[android-developers] Re: Regarding Multiple Language support.

2008-05-15 Thread umar
Im looking for the same.It is possible through Java internationalization.but im not sure whether we can use it in android.I'm trying for the same Here is link to get some idea abt I18N n L10N http://java.sun.com/docs/books/tutorial/i18n/locale/index.html Thanks, Ashok.. --~--~-~--~~

[android-developers] Re: post mplayer to android emlator

2008-05-15 Thread eric
Hi, Where did you post the mplayer work? I am interested in a Mplayer port for Android. Would it support all the codecs and features that x86 mplayer does? Thanks Eric On May 11, 3:30 pm, wangjie <[EMAIL PROTECTED]> wrote: > bye the way > I postmplayeris a open source project use c nativa mode

[android-developers] Re: Getting e-mail of selected person in Contacts

2008-05-15 Thread Chintan
How can I get the email address from a cursor on People.CONTENT_URI? Cursor c = getContentResolver().query(People.CONTENT_URI, null, null, null, People.NAME + " ASC"); I need to access email address of the people in Contacts. Thanks On Apr 5, 10:22 pm, Maxim Yudin <[EMAIL PROT