riyanwenas

style_scanner

Feb 16th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <!-- scanner bar code , qr code -->
  2. <style name="TransparentToolbar" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
  3. <item name="android:windowActionBarOverlay">true</item>
  4. <!-- Support Library compability -->
  5. <item name="windowActionBarOverlay">true</item>
  6. </style>
  7.  
  8. <!-- style bar code, qr code -->
  9. <style name="AppOverlayTheme" parent="@style/Theme.AppCompat.Light">
  10. <item name="windowNoTitle">true</item>
  11. <item name="windowActionBar">false</item>
  12. <item name="android:windowFullscreen">true</item>
  13. <item name="android:windowContentOverlay">@null</item>
  14.  
  15. <item name="colorPrimary">@color/primary</item>
  16. <!-- darker variant for the status bar and contextual app bars -->
  17. <item name="colorPrimaryDark">@color/primary_dark</item>
  18. <!-- theme UI controls like checkboxes and text fields e.g. FloatActionButton -->
  19. <item name="colorAccent">@color/accent</item>
  20. <!-- Title Text Color -->
  21. <item name="android:textColorPrimary">@color/primary_text</item>
  22. <!-- color of the menu overflow icon (three vertical dots) -->
  23. <item name="android:textColorSecondary">@color/secondary_text</item>
  24. </style>
Advertisement
Add Comment
Please, Sign In to add comment