You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.xml 989B

1234567891011121314151617181920212223
  1. <resources>
  2. <!-- Base application theme. -->
  3. <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
  4. <!-- Customize your theme here. -->
  5. <item name="colorPrimary">@color/colorPrimary</item>
  6. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  7. <item name="colorAccent">@color/colorAccent</item>
  8. </style>
  9. <style name="ImageTheme" parent="android:Theme.Dialog">
  10. <item name="android:layout_width">match_parent</item>
  11. <item name="android:layout_height">match_parent</item>
  12. <item name="android:layout_marginTop">20dp</item>
  13. <item name="android:layout_marginBottom">20dp</item>
  14. <item name="android:layout_marginLeft">10dp</item>
  15. <item name="android:layout_marginRight">10dp</item>
  16. <!-- No backgrounds, titles or window float -->
  17. <item name="android:windowNoTitle">true</item>
  18. <item name="android:windowIsFloating">false</item>
  19. </style>
  20. </resources>