Android系统。启动Google Play音乐应用的目的是什么?

时间:2014-10-13 20:18:43

标签: android google-play

我已使用此代码启动Google Play音乐的Intent

Intent intent = new Intent("android.intent.action.MUSIC_PLAYER");
startActivity(intent);

但它显示了两个选项Google Play音乐和内置音乐播放器的对话 请帮助我从Intent启动Google Play音乐应用 感谢

2 个答案:

答案 0 :(得分:4)

我通过此代码解决了这个问题。

    *Intent intent = context.getPackageManager().getLaunchIntentForPackage("com.google.android.music");
    startActivity(intent);*

答案 1 :(得分:-1)