[android-beginners] Dymanic View Populated From DB Schema

2009-12-15 Thread jeremynealbrown
Hello, I am looking to create views containing checkboxes, input fields and various toggles based on a database schema that I have little control over. I have gone through the menus example from the API Demos and it is very close to what I'd like to do, however I am hesitant to subscribe to the

[android-beginners] Re: New to Android

2009-12-06 Thread jeremynealbrown
Be sure to add a permission to your manifest file: uses-permission android:name=android.permission.INTERNET / For more info: http://developer.android.com/guide/topics/manifest/uses-permission-element.html -- You received this message because you are subscribed to the Google Groups Android

[android-beginners] Re: change TextView Dynamically

2009-12-01 Thread jeremynealbrown
What exactly do you want to change? If you want to change the content of the field use myTextView.setText (Some new text). Aside from that, there is a lot you can change about a TextView at run-time: http://developer.android.com/reference/android/widget/TextView.html ~Jeremy On Nov 26, 11:14 

[android-beginners] Re: android sdk, eclipse + OS X

2009-12-01 Thread jeremynealbrown
It is possible to run Eclipse and the ADT on OSX 10.6. I followed the same steps you listed and it worked just fine. This thread is a few weeks old now? Have you been able to get it running? ~Jeremy On Nov 24, 6:00 pm, phirstube phirst...@gmail.com wrote: I dont think it is possible.  10.6 is

[android-beginners] Re: How to save Setings

2009-11-29 Thread jeremynealbrown
This might be of help to you: http://developer.android.com/guide/topics/data/data-storage.html ~Jeremy On Nov 24, 5:59 pm, Justin Anderson janderson@gmail.com wrote: Have a look at SharedPreferences and PreferenceActivity

[android-beginners] Re: How to save Setings

2009-11-29 Thread jeremynealbrown
This might help you out: http://developer.android.com/guide/topics/data/data-storage.html#pref On Nov 24, 5:59 pm, Justin Anderson janderson@gmail.com wrote: Have a look at SharedPreferences and PreferenceActivity --