android.intent.action.CAMERA_BUTTON不在Desire Z(Froyo)上播放?

时间:2011-07-21 11:39:33

标签: camera broadcastreceiver android-2.2-froyo android

我很难在Desire Z(Froyo)上拦截硬件摄像头按钮。我写了一个在G1(1.6)上正常运行的样本,但没有在上述手机上运行。

的AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.company" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="4" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".CameraReceiverTestActivity"
        android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <receiver android:enabled="true" android:exported="true"
        android:name=".CameraButtonReceiver">
        <intent-filter android:priority="999">
            <action android:name="android.intent.action.CAMERA_BUTTON" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>
</application>
</manifest>

和CameraButtonReceiver.java

package net.company;

public class CameraButtonReceiver extends BroadcastReceiver {
  static {
    Log.w("CBR", "onReceive clazz init");
  }

  @Override
  public void onReceive(Context context, Intent intent) {
      Log.w("CBR", "onReceive camera");
      abortBroadcast();
  }
}

在G1(1.6)上按下相机按钮后我会看到这两条消息,并且默认相机应用程序被禁止。但是,在Desire Z(Froyo)上没有这样的事情发生。在播放优先级,code / xml声明后,我敢说这部手机会以其他名字发送此广播。

1 个答案:

答案 0 :(得分:0)

在阅读兼容性定义文档时,单击CAMERA按钮时,设备制造商无需发送任何广播。它可能只用于Desire Z上的前景活动。我没有Z,因此无法确认您的测试。

由于绝大多数Android设备根本没有CAMERA按钮,因此您需要确保您的应用程序在没有这样的按钮的情况下正常工作,并且您建议用户CAMERA按钮可能适用于您的应用取决于设备。