これが Kitkat で機能しなくなった理由と解決方法を誰か教えてもらえますか?
private Intent player;
player = new Intent(Intent.ACTION_MEDIA_BUTTON);
synchronized (this) {
player.putExtra(Intent.EXTRA_KEY_EVENT, new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_MEDIA_PLAY));
sendOrderedBroadcast(player, null);
player.putExtra(Intent.EXTRA_KEY_EVENT, new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_MEDIA_PLAY));
sendOrderedBroadcast(player, null);
}