Reputation: 87
Where can I find the list of styling attributes for all android components?
example:
@style/MyTheme.ActionBar.TitleTextStyle
android:titleTextStyle does not appear on the drop down when I edit it on XML.
looking for complete references for these, does anyone know where I should look?
Thanks devs!
Upvotes: 1
Views: 134
Reputation: 28179
All styleable attributes are here: http://developer.android.com/reference/android/R.styleable.html
All styles (themes) are here: http://developer.android.com/reference/android/R.style.html
Upvotes: 1
Reputation: 7123
Find all the Android base styles here
https://github.com/android/platform_frameworks_base/tree/master/core/res/res
Upvotes: 1