Where can I find all created Android themes

Im currently using:

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

To whom I miss a little, is there a link that you can direct me to, shows me examples of all the built-in topics and their names?

I read in another post that there are many, so it would be better if there was a site / other source that could show me some previews :)

Thanks for the help!

+6
source share
3 answers

you can see the whole topic name in meanifeast.xml .. for this see this snapshot enter image description here

+4
source

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

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

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

+9
source

Android Studio has a Theme Editor that provides a preview function.

The user can find all the built-in themes inside.

2 ways to open it:

  • Open the XML stylesheet, for example res / values ​​/ styles.xml . Then click Open Editor in the upper right corner of the file editing window.
  • on the top menu bar of the Tools theme editor for Android .
0
source

Source: https://habr.com/ru/post/952233/


All Articles