Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <item name="android:colorButtonNormal">@color/blue</item>
  2.  
  3. <Button
  4. android:id="@+id/button1"
  5. android:layout_width="wrap_content"
  6. android:layout_height="wrap_content"
  7. android:elevation="3dp"
  8. android:backgroundTint="@color/orange"
  9. android:text="@string/button1_text"
  10. android:textAllCaps="true"
  11. android:textColor="@color/white"
  12. android:textSize="18sp" />
  13.  
  14. <style name="AppTheme" parent="@android:style/Theme.Material.Light">
  15. <item name="android:actionBarStyle">@style/actionBarCustomization</item>
  16. <item name="android:spinnerDropDownItemStyle">@style/mySpinnerDropDownItemStyle</item>
  17. <item name="android:spinnerItemStyle">@style/mySpinnerItemStyle</item>
  18. <item name="android:colorButtonNormal">@color/myDarkBlue</item>
  19. </style>
  20.  
  21. <style name="actionBarCustomization" parent="@android:style/Widget.Material.Light.ActionBar">
  22. <item name="android:background">@color/white</item>
  23. <item name="android:titleTextStyle">@style/actionBarTextColor</item>
  24. </style>
  25.  
  26. <style name="actionBarTextColor" parent="@android:style/TextAppearance">
  27. <item name="android:textColor">@color/black</item>
  28. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement