satellitemundo
Newbie
Hi Friends,
I want to open Android's default music app from our own app. I am able to find
from google. But this is supported for level 8 and up.
Is there any other way to open music app.
I can not ignore Android 2.1 version.
Please Help
I want to open Android's default music app from our own app. I am able to find
Code:
Intent intent = new Intent(MediaStore.INTENT_ACTION_MUSIC_PLAYER);
startActivity(intent);
from google. But this is supported for level 8 and up.
Is there any other way to open music app.
I can not ignore Android 2.1 version.
Please Help