Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find all Android built in themes

Tags:

android

themes

At the moment im using:

android:theme="@android:style/Theme.Black.NoTitleBar"

Which I'm growing a bit bored of, Is there a link you can direct me to that shows me examples of all the inbuilt themes and their names?

I read on another post that there is quite a few so it would be best if there was a website/other source that could show me some previews :)

Thanks for the help!

like image 764
Eduardo Avatar asked Aug 21 '13 18:08

Eduardo


1 Answers

Your IDE (I know Android Studio does), should show you them.

Otherwise, here they are in raw xml form. https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/res/res/values/themes.xml

More information on Android Dev docs: http://developer.android.com/guide/topics/ui/themes.html

like image 193
Connor Tumbleson Avatar answered Nov 15 '22 18:11

Connor Tumbleson