Custom AlertDialog Address Lists

I've been working with custom AlertDialog preferences for the last few days and came across android.R.layout .xxx layouts .

This question would be a good example . The android documentation is extremely skimpy at this ...

What I haven't found is just how to look for components of such layouts. I tried to open these layouts in Eclipse but it says it can't and I couldn't find a site that would list these layouts.

So how do I know which android.R.id is in such a layout and which layout is appropriate to use?

+3


source to share


1 answer


You can check the list of layout files here:

https://github.com/android/platform_frameworks_base/tree/master/core/res/res/layout



Open the file you are interested in to check which identifiers are listed in each

+1


source







All Articles