0

我在意图过滤器中使用 android.bluetooth.device.action.ACL_CONNECTED 在清单中定义了一个广播接收器。

当应用程序在堆栈中时它触发得很好,但是在我从 android 设置中停止它之后它就不会再触发了。有什么建议么?

门尼更新:

<receiver android:name=".auto.AppLauncher">
   <intent-filter>
        <action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
   </intent-filter>
</receiver>
4

1 回答 1

0

您是否在代码中编写了广播接收器?

    public class receiver extends BroadcastReceiver {

        @Override
        public void onReceive(Context context, Intent intent) {
            if(intent.getAction().equals(BluetoothDevice.ACTION_ACL_CONNECTED)) {
                    //something you want to do here
            }
        }
    }
于 2013-03-26T23:59:26.813 回答