[android-developers] Custom list adapter using SQL and line-specific icons

2009-08-28 Thread Christian S.
I have been twisting my head around this issue for quite some time now. Couldnt find anything close on the web. That's why I am coming back to you now. This is what I already have: - Simple list adapter bound to an SQL database (TextView only) - WORKS! - And in a separate app: An imageloader

[android-developers] How to root German G1 running on CRC37?

2009-08-24 Thread Christian S.
Hi, anyone has a step-by-step approach how to root a German G1 running on CRC37? thanks! --~--~-~--~~~---~--~~ 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] URGENT: install sqlite db on Android phone???

2009-07-29 Thread Christian S.
Folks, apologies ... I have a very urgent request. Tomorrow I want to present an Android application on the phone (not on the emulator) to a group of students. I have a Samsung Galaxy running on Android 1.5. I got it all hooked up and I can see the device using adb devices. I can also see it in

[android-developers] Re: URGENT: install sqlite db on Android phone???

2009-07-29 Thread Christian S.
there. For installing / running the app on the device I only got the usual error that the application has stopped. This is certainly related to the missing SQLite database. Any further ideas? On Jul 29, 4:02 pm, Mark Murphy mmur...@commonsware.com wrote: Christian S. wrote: Folks, apologies ... I have

[android-developers] Re: URGENT: install sqlite db on Android phone???

2009-07-29 Thread Christian S.
just tried adb pull on a Google Ion, and you're right -- adb push and pull do not work. Christian S. wrote: For installing / running the app on the device I only got the usual error that the application has stopped. This is certainly related to the missing SQLite database. Out

[android-developers] Re: How to force a line break in xml layout when using list adapter?

2009-07-14 Thread Christian S.
Ok - no worries anymore. I got that sorted out. Should use layout_below instead of layout_toRightOf. Thanks to the anddev team! On Jul 13, 7:25 pm, Christian S. schrott...@gmx.de wrote: I am struggling with applying a forcedlinebreakin the xml layout when using a simple list adapter. The data

[android-developers] Re: Mix tab with ImageView and TextView

2009-07-13 Thread Christian S.
android:layout_width=fill_parent android:layout_height=fill_parent android:text=this is a fourth tab / /FrameLayout /LinearLayout /TabHost On Jul 11, 11:52 pm, Christian S. schrott...@gmx.de wrote: How can I best mix in one activity a tab

[android-developers] Forced line break in xml layout using simple list adapter

2009-07-13 Thread Christian S.
I am struggling with applying a forced line break in the xml layout when using a simple list adapter. The data for the list adapter is being pulled from an sqlite db. Here is the code: SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.item,

[android-developers] How to force a line break in xml layout when using list adapter?

2009-07-13 Thread Christian S.
I am struggling with applying a forced line break in the xml layout when using a simple list adapter. The data for the list adapter is being pulled from an sqlite db. Here is the code: SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.item,

[android-developers] Mix tab with ImageView and TextView

2009-07-11 Thread Christian S.
How can I best mix in one activity a tab activity with an ImageView / TextView? Any thoughts would be highly appreciated. thanks, christian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Google Maps application problem - tiles not loading = grey background only / Maps API key available

2009-06-30 Thread Christian S.
All, thanks very much for your comments. I do not have my development machine with me at the moment ... so I can only try later today ... however, it is probably the internet permission in the manifest. When I read it, it was eye-opening to me ... keep you all posted. best regards christian On

[android-developers] Re: Google Maps application problem - tiles not loading = grey background only / Maps API key available

2009-06-30 Thread Christian S.
Just to confirm that it really was the INTERNET permission ... sometimes you do not see the forest because of all the trees. Thanks again. Ch. On Jun 30, 9:25 am, Christian S. schrott...@gmx.de wrote: All, thanks very much for your comments. I do not have my development machine with me

[android-developers] Google Maps application problem - tiles not loading = grey background only / Maps API key available

2009-06-29 Thread Christian S.
For some reason I cannot get my first maps application to work. I have gone though the full process of getting the MD5 fingerprint for the debug.keystore, registered for the key on the website, put it into the xml file. Even had changed my computer's locale to US English. I also signed the

[android-developers] Re: Best approach for making one variable available in another activity / class

2009-06-24 Thread Christian S.
Just to confirm that this approach perfectly worked for me! Thanks again! On 22 Jun., 16:56, Christian S. schrott...@gmx.de wrote: Great - will try and let you know Ch. On 22 Jun., 16:40, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: //calling activity int count  = 0

[android-developers] Best approach for making one variable available in another activity / class

2009-06-22 Thread Christian S.
I have tried to understand for the past 2 days what is the best approach to making the value from a variable sitting in activity A (in my case, the int position used in OnListItemClick / OnItemSelectedListener) available in another activity B (which of course sits in another class). There may be

[android-developers] Re: Best approach for making one variable available in another activity / class

2009-06-22 Thread Christian S.
the activities then i'd advice u to try using the putExtra method of the Intent class... u can read the extras in ur target activity by using getIntent.getExtras() method... jus give it a try... i hope this helps u... On Mon, Jun 22, 2009 at 6:52 PM, Christian S. schrott...@gmx.de wrote: I

[android-developers] Re: Best approach for making one variable available in another activity / class

2009-06-22 Thread Christian S.
); //target class int count = getIntent().getIntExtra(count); On Mon, Jun 22, 2009 at 7:26 PM, Christian S. schrott...@gmx.de wrote: Sujay, thanks for this rapid response!!! Do you have a sample code to illustrate how this would be working ...? Thanks, Christian On 22 Jun., 15:29, Sujay

[android-developers] MediaController tutorial

2009-05-07 Thread Christian S.
Anyone have a tutorial how to build a MediaController? --~--~-~--~~~---~--~~ 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

[android-developers] How to mix 2D graphics with layouts

2009-04-27 Thread Christian S.
I'd like to build an activity that is mixing layouts with 2D graphics. So for example, would like to introduce an edittext with an integer value and based on that value the size of a circle is dynamically adjusted and drawn. Any idea how to do this? For plain graphics I am using this approach