[android-developers] Re: Make My App Available By Intent

2009-04-09 Thread droozen
I've been trying some other stuff, too, now. And this doesn't even seem to work: Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_LAUNCHER); startActivity(intent); I would expect that to ask me which app I want to launch. Instead I get a Force Close error. On A

[android-developers] Re: Make My App Available By Intent

2009-04-09 Thread droozen
No, when I try to call the intent with startActivity I get a Force Close error, whether I try: Intent intent = new Intent(); intent.setAction("intent.action.VOLUME_CONTROL"); startActivity(intent); or Intent intent = new Intent("intent.action.VOLUME_CONTROL"); startActivity(intent); with this

[android-developers] Re: Make My App Available By Intent

2009-04-08 Thread Birjodh Tiwana
So did the second way work for you? On Wed, Apr 8, 2009 at 12:24 PM, droozen wrote: > > Sorry. The second way I tried to start the intent was: > > Intent intent = new Intent("intent.action.VOLUME_CONTROL"); > startActivity(intent); > > (without the com.roozen in front) > > On Apr 8, 11:12 am, d

[android-developers] Re: Make My App Available By Intent

2009-04-08 Thread droozen
Sorry. The second way I tried to start the intent was: Intent intent = new Intent("intent.action.VOLUME_CONTROL"); startActivity(intent); (without the com.roozen in front) On Apr 8, 11:12 am, droozen wrote: > Maybe this belongs in the beginners group, but I'm trying to make my > application av