[android-developers] Re: Need an invitation to google Wave?

2009-11-01 Thread John P.
I'd like one. Thank you if you could send it! =) On Nov 1, 1:20 am, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: connect to Google maps API or app to trace routes ...

2009-09-17 Thread John P.
I think they deprecated their API per Maps terms and conditions, http://maps.google.com/help/terms_maps.html, section 2g. Anyone more knowledgeable about this restriction, feel free to clarify. On Sep 17, 5:15 am, LEMESLE Philippe philippe.leme...@alyotech.fr wrote: thank you for your answer

[android-developers] Re: dynamically add checkbox

2009-08-11 Thread John P.
This basically involves writing UI code programatically. See http://developer.android.com/guide/samples/ApiDemos/src/com/example/android/apis/view/ScrollView2.html for an example of adding multiple TextView and Button to a ScrollView in a for loop. On Aug 11, 2:12 pm, Honest

[android-developers] Re: dynamically add checkbox

2009-08-11 Thread John P.
honestsucc...@gmail.com wrote: Thanks i saw that example but now only one question in my mind. Can i get the status of that checkbox letter ? if yes how. I am not finding any assosiated ID with it so can some one tell me how can i do it ? On Aug 12, 12:09 am, John P. johnny.d.p...@gmail.com wrote

[android-developers] Re: Emulator does not start with additional emulator command line arguments

2008-04-29 Thread John P.
I'm not sure about including quotes when specifying the argument. I also think you may need to escape the space in program files. Try testing on a terminal with emulator arguments On Apr 29, 4:07 pm, Kyle R [EMAIL PROTECTED] wrote: Under Run-Dialog / Target Tab / Additional Emulator

[android-developers] Re: how to access mobile web app on local network

2008-04-26 Thread John P.
Can you access any websites? Just trying to narrow down the problem: either something with your intranet or your proxy settings. If you can't access anything, then consider looking into your proxy settings. Search the group and you'll find previous discussions. On Apr 25, 12:59 pm, WRM [EMAIL

[android-developers] Re: Masked EditText

2008-04-26 Thread John P.
You can set various input types by using predefined XML attributes, or making a custom one. The predefined types may fulfill your needs, specifically android:digits. As for the date, I couldn't find the XML version, but you could do is programatically by myEditText.setInputMethod(myInputMethod)

[android-developers] Re: ListView along with buttons

2008-04-09 Thread John P.
sure. Nest them all in a top level layout like LinearLayout. Just make sure the children views don't have fill_parent both width and height or else anything that comes after it won't be visible. There are lots of examples in the API demo. On Apr 9, 8:50 pm, GUS [EMAIL PROTECTED] wrote: Is