[android-beginners] Sliding ListView

2009-09-05 Thread Teal
Hi, I'm looking for a List View/Activity that when an item is selected, it slides into another list. This is seen in some iPhone apps, as well as the Amazon app in Android. It looks like a ListView, but there's a small triangle right arrow on the right side of each list item. Is there such

[android-beginners] Re: problem with service

2009-08-28 Thread Teal
Thanks for the useful explanation, Lutz. This might be a newbie question, but if you're spawning a new thread anyway, why run it in a Service? Why not just spawn from Activity? Thanks. On Aug 28, 6:25 am, Lutz Schönemann lutz.schoenem...@sit.fraunhofer.de wrote: A service is not running in

[android-beginners] Ways to get Context

2009-08-10 Thread Teal
Hi, Are there any differences between the following code? 1. new Intent(this, MyOtherActivity.class); 2. new Intent(Context.this, MyOtherActivity.class); 3. new Intent(getApplicationContext(), MyOtherActivity.class); I think 1 vs 2 will matter when I'm inside an Activity or inside an

[android-beginners] Re: Launching Settings

2009-08-07 Thread Teal
, Balwinder Kaur Open Source Development Center ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Aug 5, 3:46 pm, Teal teal.b...@gmail.com wrote

[android-beginners] Launching Settings

2009-08-06 Thread Teal
Hi all, I'd like to launch the Menu - Settings - Security Location programmatically. I monitored the DDMS and noticed that the Intents being launched are as follows: Intent { action=android.settings.SETTINGS flags=0x1020 comp= {com.android.settings/com.android.settings.Settings} }