Android: Get color Theme dark -


i have created menu in application , looks white background. want color theme of black background. have change in code it? have declared in styles:

<style name="appbasetheme" parent="android:theme.holo">

edit not want color black background. want dark theme many apps have.

my current color menu

link 1

my whised color menu

link 2

<style name="appbasetheme" parent="android:theme.holo">  </style>  <style name="apptheme" parent="appbasetheme">     <item name="android:textcolorprimary">#ff000000</item> </style> 

u can android theme

parent="android:theme.holo.dark" parent="android:theme.holo"  

and custom u can set

   <resources>         ...         <style name="mycustomtheme" parent="android:style/theme">             <item name="android:textcolorprimary">#ffff0000</item>         </style>         ...     </resources> 

Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -