在三星耳机Android中检测按钮按下

时间:2012-10-22 14:06:10

标签: android broadcast headset

我正试图检测(通过BroadcastReciever)硬按原版三星耳机按钮。

代码很简单:

public class MediaButtonIntentReceiver extends BroadcastReceiver {

public MediaButtonIntentReceiver() {
    super();
}

@Override
public void onReceive(Context context, Intent intent) {
    String intentAction = intent.getAction();
    Toast.makeText(context, "Action: "+intentAction, Toast.LENGTH_SHORT).show(); 
    if (!Intent.ACTION_MEDIA_BUTTON.equals(intentAction)) {
        return;
    }
    Toast.makeText(context, "BUTTON PRESSED!", Toast.LENGTH_SHORT).show(); 
    KeyEvent event = (KeyEvent)intent.getParcelableExtra(Intent.EXTRA_KEY_EVENT);
    if (event == null) {
        return;
    }
    int action = event.getAction();
    if (action == KeyEvent.ACTION_DOWN) {
    // do something
        Toast.makeText(context, "BUTTON PRESSED!", Toast.LENGTH_SHORT).show(); 
    }
    abortBroadcast();
}

清单:

 <application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver android:name=".MediaButtonIntentReceiver" >
        <intent-filter android:priority="100000000000000" >
            <action android:name="android.intent.action.MEDIA_BUTTON" />
        </intent-filter>
    </receiver>
</application>

我已经在galaxy s1中测试了它(2个有根设备,没有发生任何事情)和galaxy NOTE(媒体启动/停止并且音量已经按顺序改变,但代码中没有发生任何事情......),在HTC中一切正常。 我99%肯定这不是优先考虑的问题,因为我多次改变它。

如果有人知道那里发生了什么,我将不胜感激。 谢谢。 UDI

2 个答案:

答案 0 :(得分:2)

您还需要在registerMediaButtonEventReceiver 上致电AudioManager以接收活动。该状态将持续,直到其他调用registerMediaButtonEventReceiver()或直到您调用unregisterMediaButtonEventReceiver()。

例如,这样的活动:

public class MediaButtonActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        ((AudioManager)getSystemService(AUDIO_SERVICE)).registerMediaButtonEventReceiver(new ComponentName(
                                                                                                   this,
                                                                                                   MediaButtonIntentReceiver.class));
    }
}

将启用您的舱单注册的MediaButtonIntentReceiver以获取ACTION_MEDIA_BUTTON事件。

答案 1 :(得分:0)

尝试关闭S-Voice并再次运行您的应用程序。