我正在尝试通过位于 Google Play 音乐应用程序顶部并通过广播与其通信的服务和接收器来扩展有线麦克风遥控按钮的功能。我在 ICS 上使用 Google Nexus S。
我遇到的问题是,一旦 MusicPlaybackService 运行,我的代码就会运行良好,但情况并非总是如此。如何在不显示任何 UI 的情况下启动此服务(用户不知道)。我的代码具有以下定义:
public static final String SERVICECMD = "com.android.music.musicservicecommand";
public static final String CMDNAME = "command";
public static final String CMDTOGGLEPAUSE = "togglepause";
public static final String TOGGLEPAUSE_ACTION = "com.android.music.musicservicecommand.togglepause";
我尝试了以下选项:
1)基于this SO question。我不确定是否关于 SERVICECMD,因为问题表明我应该使用“com.android.music.musicservicecommand”,但对于 ICS,我相信包名称已经改变。
Intent i = new Intent(SERVICECMD);
i.putExtra(CMDNAME, CMDTOGGLEPAUSE);
sendBroadcast(i);
我也尝试用 TOGGLEPAUSE_ACTION 替换 SERVICECMD。
2)来自这个android项目问题。
Intent musicIntent = new Intent();
musicIntent.setClassName("com.google.android.music", "com.google.android.music.MusicPlaybackService");
musicIntent.setAction(TOGGLEPAUSE_ACTION);
musicIntent.putExtra(CMDNAME, CMDTOGGLEPAUSE); // or "next" or "previous"
sendBroadcast(musicIntent);
3) 此代码因以下错误而崩溃。我不确定如何使用此选项更进一步。
引起:android.content.ActivityNotFoundException:无法找到明确的活动类{com.google.android.music/com.google.android.music.MusicPlaybackService};您是否在 AndroidManifest.xml 中声明了此活动?
Intent intent = new Intent();
intent.putExtra(CMDNAME, CMDTOGGLEPAUSE);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setClassName("com.google.android.music", "com.google.android.music.MusicPlaybackService");
startActivity(intent);
4) 我注意到当耳机从我的手机中取出时,MusicPlaybackService 会启动,因为它正在响应 WiredAccessoryObserver 接收的 Intent.ACTION_HEADSET_PLUG 广播。我尝试使用 LogCat 中显示的值在我的代码中复制该广播。
Intent intent = new Intent(Intent.ACTION_HEADSET_PLUG);
intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
intent.putExtra("state", 0);
intent.putExtra("name", "h2w");
intent.putExtra("microphone", 1);
sendBroadcast(intent);
我真的在寻找一种在启动服务时一直有效的方法。我对任何事情都持开放态度。我仍然必须尝试绑定到使用 IMediaPlaybackService.aidl 的服务,该服务应该随机中断,并不理想。提前感谢您的帮助。
编辑
我尝试使用以下代码绑定到服务,但引发了错误:
原因:java.lang.SecurityException:不允许绑定到服务 Intent { cmp=com.google.android.music/.MusicPlaybackService }
在我的 OnCreate 函数中
if (mPlaybackService == null) {
Intent i = new Intent();
i.setClassName("com.google.android.music","com.google.android.music.MusicPlaybackService" );
bindService(i, connection, Context.BIND_AUTO_CREATE);
}
在我的课上
IMediaPlaybackService mPlaybackService = null;
ServiceConnection connection = new ServiceConnection() {
public void onServiceConnected(ComponentName name, IBinder service) {
mPlaybackService = IMediaPlaybackService.Stub.asInterface(service);
}
public void onServiceDisconnected(ComponentName name) {
mPlaybackService = null;
}
};