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

前端 未结 4 976
生来不讨喜
生来不讨喜 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 06:14

    Hey I think I answered my own question :)

    In my Android SDK directory, under /platforms/android-x/data (x being the API level) I've found several very interesting files:

    • activity_actions.txt
    • broadcast_actions.txt
    • categories.txt
    • features.txt
    • widgets.txt

    Turns out the first two contain plenty of raw Intents, including ones that are not defined in Intent.java !

    I'm not quite sure what theses lists are here for, I'd just like to be sure they are exhaustive for their API level... (even if I don't see why they wouldn't be)

提交回复
热议问题