【发布时间】:2013-11-10 14:06:54
【问题描述】:
谁能告诉我为什么这不再适用于 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);
}
【问题讨论】:
标签: android android-4.4-kitkat