Advertisement
Guest User

Untitled

a guest
Aug 11th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <style name="Theme.Prefs" parent="@android:style/Theme.Holo.Light">
  2. <item name="android:windowBackground">@drawable/background</item>
  3. <item name="android:buttonStyle">@style/CustomButtonStyle</item>
  4. <item name="android:editTextStyle">@style/CustomEditTextStyle</item>
  5. </style>
  6.  
  7.  
  8. <style name="CustomButtonStyle" parent="@android:style/Widget.Holo.Button">
  9. <item name="android:background">@drawable/custom_button</item>
  10. <item name="android:textSize">@dimen/dialog_text_size_normal</item>
  11. <item name="android:textColor">@color/dialog_control_colour</item>
  12. </style>
  13.  
  14.  
  15. <style name="CustomEditTextStyle" parent="@android:style/Widget.Holo.EditText">
  16. <item name="android:background">@drawable/custom_textfield</item>
  17. <item name="android:textColor">@color/dialog_control_colour</item>
  18. <item name="android:textSize">@dimen/dialog_text_size_normal</item>
  19. </style>
  20.  
  21. <activity
  22. android:name="com.breadbun.prefs.MainPreferencesActivity"
  23. android:theme="@style/Theme.Prefs"
  24. android:screenOrientation="portrait">
  25. </activity>
  26.  
  27. <style name="AppTheme" parent="android:Theme.Material">
  28. <item name="android:alertDialogTheme">@style/DialogStyle</item>
  29. </style>
  30. <style name="DialogStyle" parent="android:Theme.Material.Dialog.Alert">
  31. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement