0

我在意向過濾器中的清單中使用android.bluetooth.device.action.ACL_CONNECTED定義了廣播接收器。應用程序停止後未觸發廣播接收器

當應用程序在堆棧中時觸發正常,但在停止它從android設置後,它不會再觸發。有什麼建議麼?

更新Menny:

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

您能添加更多信息嗎?就像您聲明過濾器的AndroidManifest片段一樣嗎? – Menny 2013-03-17 01:09:51

+0

嗨,我補充說。 – oriharel 2013-03-17 14:57:34

回答

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 
      } 
     } 
    }