Available Android themes for apps?

Are there any (archived) themes / styles that I can use when I develop an Android application other than those distributed with the Android SDK?

+4
source share
2 answers

I think you're looking for Theme.Light or Theme.Dark, which android gives for use in actions.

There are very few of them. You can check them out here http://developer.android.com/reference/android/R.style.html . They start with Theme.something.

You can use them as follows:

<activity android:name=".Main" android:label="@string/app_name" android:theme="@android:style/Theme.Light.NoTitleBar"> </activity> 
+2
source

All Articles