Search code examples
androidresourcesidentifier

Resource name for getIdentifier()


Where can I find names for resources to use in getIndetifier() like in the example below?

Int resId = getContext().getResources().getIdentifier("alertTitle", "id", "android");

Solution

  • alertTitle is here

    https://github.com/android/platform_frameworks_base/blob/master/core/res/res/layout/alert_dialog_holo.xml#L51

    From what I know there is not one single document that will list you them all. You will have to be more specific about what area you want to look in then browse the Android source code.