Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/toolbar_show_addresses_simple"
  5. app:style="@style/toolbar_dark" >
  6.  
  7. <style name="toolbar_dark">
  8. <item name="android:layout_width">match_parent</item>
  9. <item name="android:layout_height">wrap_content</item>
  10. <item name="android:background">@color/myPrimary</item>
  11. <item name="app:theme">@style/ThemeOverlay.AppCompat.Dark</item>
  12. <item name="app:popupTheme">@style/ThemeOverlay.AppCompat.Light</item>
  13. <item name="app:contentInsetStart">0dp</item>
  14. </style>
  15.  
  16. Output:
  17. Error: No resource found that matches the given name: attr 'app:contentInsetStart'.
  18. Error: No resource found that matches the given name: attr 'app:popupTheme'.
  19. Error: No resource found that matches the given name: attr 'app:theme'.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement