Create an IntentFilter in android that matches ALL intents

前端 未结 2 832
说谎
说谎 2021-01-02 01:25

Is it possible to create an IntentFilter in android that matches ALL intents that are Broadcasted on the phone (perhaps by way of using a BroadcastReceiver)? I.E. the ones I

2条回答
  •  离开以前
    2021-01-02 01:54

    You said it yourself, the documentation quite clearly specifies how intent filters function and that this is not possible to receive all broadcasts.

    Neither this nor retrieving task information is something that is supported by the APIs made public in the Android SDK.

提交回复
热议问题