耳机连接器中的Android智能按钮

时间:2017-01-12 18:07:50

标签: android button

我从当地的电子商店设备“Android Smart Button”购买。它与Pressy类似,但我不知道它来自Chine,包括应用程序。当我尝试下载应用时,Google Chrome会警告我这不安全。所以我想编写自己的应用程序来控制它,但我不知道,当我可以接收按钮点击。你能建议我吗?谢谢。

我尝试了这个,但它没有用。

<receiver android:name=".RemoteControlReceiver">
    <intent-filter>
        <action android:name="android.intent.action.MEDIA_BUTTON" />
    </intent-filter>
</receiver>

@Override
public void onReceive(Context context, Intent intent) {
Log.d(TAG, "onReceive: ");
if (Intent.ACTION_MEDIA_BUTTON.equals(intent.getAction())) {
    KeyEvent event = intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);
    int keyCode = event.getKeyCode();

}

1 个答案:

答案 0 :(得分:0)

今天我找到solution provided by Fouad Wahabi,它也适用于中国的这款智能按钮。所以现在我终于可以替换名为KlicK的非常不受信任的应用程序了。