Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a list of Android style items?

Tags:

android

Where can I find a list of all possible items in an android style xml? It seems like a single reference document listing them and summarizing what they do would be an extremely useful thing to have bookmarked, but I can't find one anywhere.

like image 602
drew moore Avatar asked Apr 08 '13 06:04

drew moore


1 Answers

Here you go for every attributes you want in single file: https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/res/res/values/styles.xml

And If you want only attributes list then you can refer R.style xml directly but It's not well documented so It would be better to view actual source code given in above link.

like image 52
Paresh Mayani Avatar answered Nov 14 '22 01:11

Paresh Mayani