What is the exhaustive list of all “android.intent.action” actions available in the Android SDK?

前端 未结 4 1040
生来不讨喜
生来不讨喜 2021-01-30 05:45

Hi fellows,

I\'d like to know if there is some exhaustive reference of all Intent actions defined in the standard Android SDK ? I\'m thinking of the full \"android.inten

4条回答
  •  不知归路
    2021-01-30 05:55

    I'd like to know if there is some exhaustive reference of all Intent actions defined in the standard Android SDK ?

    No.

    For those who believe all Intent actions are aliased in the Intent class (I was one of them until very recently) I have at least one action which is not : android.intent.action.HDMI_PLUG (defined in media/java/android/media/AudioService.java) and I believe there are many others.

    If it is not in the SDK, there is no guarantee that it will exist on any given version of Android (past/present/future) or on any given device (given manufacturers' ability to change non-SDK elements). Specifically in this case, there is no AudioService in the Android SDK and there is no HDMI_PLUG action in the Android SDK.

提交回复
热议问题