selection color and text color in whole project
by AJ (Anantha Javali) » Thu, 22 Apr 2010 21:46:47 GMT
Here is an example, Please use add it as part of your manifest file
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme">
<item name="android:windowNoTitle">true</item>
<item name="windowFrame">@drawable/screen_frame</item>
<item name="windowBackground">@drawable/screen_background_white</
item>
<item name="panelForegroundColor">#FF000000</item>
<item name="panelBackgroundColor">#FFFFFFFF</item>
<item name="panelTextSize">14</item>
<item name="menuItemTextColor">?panelTextColor</item>
</style>
</resources>
Set the theme in the manifest
<application android:theme="@style/MyTheme">
>
Sponsored Links