Advertisement
MDRams

Untitled

Oct 31st, 2015
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
  6. android:layout_height="match_parent" android:fitsSystemWindows="true"
  7. tools:context=".MainActivity">
  8.  
  9. <android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
  10. android:layout_width="match_parent" android:theme="@style/AppTheme.AppBarOverlay">
  11.  
  12. <android.support.v7.widget.Toolbar android:id="@+id/toolbar"
  13. android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
  14. android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" />
  15.  
  16. </android.support.design.widget.AppBarLayout>
  17.  
  18. <include layout="@layout/content_main" />
  19.  
  20. <android.support.design.widget.FloatingActionButton android:id="@+id/fab"
  21. android:layout_width="wrap_content" android:layout_height="wrap_content"
  22. android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin"
  23. android:src="@android:drawable/ic_dialog_email" />
  24.  
  25. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement