2

Android開発は初めてです。Bluetooth イベントを受信するための BroadcastReceiver を宣言するサービスでテスト アプリを定義しました。

public class MyService extends Service
 {
  BluetoothEventsReceiver mBluetoothEventsReceiver = null;

   @Override
    public int onStartCommand(Intent i, int flags, int startId) {

        // register the receiver to listen for Bluetooth Connected/Dis-connected events
        if (mBluetoothEventsReceiver != null) {
            mBluetoothEventsReceiver = new BluetoothEventsReceiver();

            Log.e(TAG, "Register receiver=" + mBluetoothEventsReceiver);
            IntentFilter intent = new IntentFilter("android.bluetooth.device.action.ACL_CONNECTED");
            intent.addAction("android.bluetooth.device.action.ACL_DISCONNECTED");

            getApplicationContext().registerReceiver(mBluetoothEventsReceiver, intent);
        }

        return super.onStartCommand(i, flags, startId);
   }
    @Override
    public IBinder onBind(Intent intent) {
        return null; 
    }
}

私のBroadcastReceiverは次のように定義されています

public class BluetoothEventsReceiver extends BroadcastReceiver {

 public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();

        if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action)) {
            Log.e(TAG, "Received Event" + " ACTION_ACL_DISCONNECTED" );
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            Log.e(TAG, "device=" + device);        

        } else if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
            Log.e(TAG, "Received Event" + " ACTION_ACL_CONNECTED" );
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            Log.e(TAG, "device=" + device);
        }
    }
}

アクティビティからサービスを開始し、Bluetooth ヘッドセットを接続および切断したときに BroadcastReceiver がログ メッセージを出力することを期待していますが、ログは出力されません。だから、私はそれが呼び出されていないと思います。

public class MyActivity extends Activity {

    // Debugging
    public final static String TAG ="MyActivity";

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Log.e(TAG, "Starting service");
        startService(new Intent(".MyService"));

    }

また、レシーバーをマニフェスト ファイルに追加すると、BluetoothEventsReceiver が呼び出されます。しかし、私の理解では、サービスの実行中にのみレシーバーをアクティブにしたい場合は、マニフェスト ファイルでレシーバーを宣言する必要はありません。

マニフェスト ファイルでアクセス許可を設定しています

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example"
          android:versionCode="1"
          android:versionName="1.0">
    <uses-sdk android:minSdkVersion="8"/>

    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application android:label="@string/app_name">
        <activity android:name="MyActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <service android:name=".MyService" android:process=":remote">
        <intent-filter>
            <!-- These are the interfaces supported by the service, which
        you can bind to. -->
            <action android:name=".MyService" />
        </intent-filter>
        </service>
</application>
</manifest> 

私が間違っていることをデバッグするのを手伝ってください。

4

2 に答える 2

0

インテントフィルターを次のように変更します。

IntentFilter intent = new IntentFilter("android.bluetooth.device.action.ACL_CONNECTED");
intent.addAction("android.bluetooth.device.action.ACL_DISCONNECTED");

これに:

 IntentFilter intent = new IntentFilter();
 intent.addAction("android.bluetooth.device.action.ACL_CONNECTED");
 intent.addAction("android.bluetooth.device.action.ACL_DISCONNECTED");

作成したフィルターはBluetoothインテントと一致しないようです。これは、追加のデータが添付されているためですが、フィルターはアクションのみを持つ空のインテントに対してのみ機能します。

APIのjavadocは次のとおりです。

public IntentFilter(String action)以降:APIレベル1データのない単一のアクションに一致する新しいIntentFilter。その後、データ特性が指定されない場合、フィルターはデータを含まないインテントにのみ一致します。

于 2012-11-16T01:46:05.357 に答える