If you add a theme to the entire program, how can you start with it:
In the manifest, you add to your application tag that you are using a theme.
<application android:theme="@style/mythemename">
Then look at the XML Theme to make sure that you have what you need to declare in the appropriate places.
If for a specific action you can add an activity tag
<activity android:theme="@android:style/Theme.propertyname">
You can also, if you want your theme to simply change the background color, follow the same template with an activity or application tag (which is ever used) and set the name of the colorbackground element to whatever you want,
You can also use the XML Theme and redo what you want in your current theme and invoke this custom theme using the method above.
I hope this helps, and if you donβt tell me, so that I can better help in the future.
Bactos Sep 09 '10 at 20:45 2010-09-09 20:45
source share