Intent to open android playlist activity

爱⌒轻易说出口 提交于 2019-11-28 05:00:02

问题


I am creating an application in which the list of the playlist already created by user in the native music application will be shown in a list and their onclick shall take them to that specific playlist page.

Following is the code which i am using

    Button open = (Button)findViewById(R.id.ope_playlist);

    cursor = playlist.this.managedQuery(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, null
            , null, null, null);
    cursor.moveToFirst();

    final String playlistid = cursor.getString(cursor.getColumnIndex
            (MediaStore.Audio.Playlists._ID));
    cursor.close();

    open.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setComponent(new ComponentName
            ("com.android.music","com.android.music.PlaylistBrowserActivity"));
            intent.setType(MediaStore.Audio.Playlists.CONTENT_TYPE);
            intent.setFlags(0x10000000);
            intent.putExtra("oneshot", false);
            intent.putExtra("playlist", playlistid);
            startActivity(intent);

        }
    });
} 

and this activity is registered in manifest as :-

<activity android:name=".playlist">
        <intent-filter >
            <action android:name="android.intent.action.VIEW" />
        </intent-filter>
    </activity>

and i get this error :-

07-22 15:02:02.545: ERROR/AndroidRuntime(11983): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.android.music/com.android.music.PlaylistBrowserActivity}; have you declared this activity in your AndroidManifest.xml?

Thanks is advance

来源:https://stackoverflow.com/questions/6788156/intent-to-open-android-playlist-activity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!