Where can I find a list of actions that I have nested in the intent filter (receiver) inside the manifest?

I am looking for a complete list of intent filter actions such as:

<receiver android:name=".BTDetector">
    <intent-filter>
        <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
        <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" /> 
    </intent-filter>
</receiver>

      

eg " android.intent.action.ACTION_POWER_CONNECTED . I can't find it in the documentation anywhere! If there isn't an exhaustive list somewhere (and why not be outside of me), I'm looking for an intent filter action to start Bluetooth discovery." since I'm running this in a service, I can't (and don't want to) do it dynamically ...

Thanks for reading and helping!

+3


source to share


2 answers


Try BluetoothAdapter and BluetoothDevice



As with all Android intent actions, docs for Intent

contain most. Other things like bluetooth, etc. are usually defined in various packages that provide this functionality.

+2


source


see the full list of intents in android Intent.java



0


source







All Articles