Here's the Official Google Documentation for Default List Themes and Styles Google Android Documentation
You can find it here in this documentation.
I know that the answer to the above question ends here, still giving way to implementation, as it will be useful for beginners.
How to implement them
This is what I got from themes.xml
<style name="Theme.NoTitleBar"> <item name="android:windowNoTitle">true</item> </style>
Now to implement it in my project
I need to add the following line to my Styles.xml file
<style name="AppTheme" parent="android:Theme.NoTitleBar" />
In this, I create my own theme called " AppTheme ", which will inherit its properties from already defined them by google . so i mention it in parent
By learning themes.xml , Styles.xml will not only help to get the list of the already defined themes and styles, but also help novices to have an idea how to create themes.
Since the theme that I mention here in parent is already defined by android, so we will use it by specifying the name android: in the name of the theme.
If you want to inherit your created theme , then
<style name="Theme2" parent="AppTheme"> <item name="android:windowNoTitle">true</item> <item name="android:windowFullscreen">true</item> <item name="android:windowContentOverlay">@null</item> </style>
then just specify a style name to the parent , here I use AppTheme as the parent theme for theme2
DeltaCap May 6 '13 at 5:29 2013-05-06 05:29
source share