我想使用广播接收器处理ACTION_CAMERA_BUTTON。我在androidmanifest文件中添加了以下内容
<receiver android:name="MappedKeysIntentReceiver">
<intent-filter android:priority = "999">
<action android:name="android.intent.action.ACTION_CAMERA_BUTTON" />
</intent-filter>
</receiver>
但我没有按下相机按钮播放广播,如果我手动注册然后我收到了该事件。 任何人都可以对这种行为有所了解。我希望在清单文件中指定接收器,而不是manuayyly注册它。我已经尝试过lg optimus gt540和Milestone都运行2.1 android os。
由于
答案 0 :(得分:1)
您的操作名称错误。当表示为字符串时,它是android.intent.action.CAMERA_BUTTON
。