Advertisement
Guest User

Untitled

a guest
Nov 11th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  7. tools:context=".ui.TestActivity">
  8.  
  9. <android.support.design.widget.AppBarLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:theme="@style/AppTheme.AppBarOverlay">
  13.  
  14. <android.support.v7.widget.Toolbar
  15. android:id="@+id/toolbar"
  16. android:layout_width="match_parent"
  17. android:layout_height="?attr/actionBarSize"
  18. android:background="?attr/colorPrimary"
  19. app:popupTheme="@style/AppTheme.PopupOverlay" />
  20.  
  21. </android.support.design.widget.AppBarLayout>
  22.  
  23. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  24. android:id="@+id/container"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent" />
  27.  
  28. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement