34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     xmlns:app="http://schemas.android.com/apk/res-auto"
 | |
|     xmlns:tools="http://schemas.android.com/tools"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent"
 | |
|     android:fitsSystemWindows="true"
 | |
|      >
 | |
| 
 | |
|     <android.support.design.widget.AppBarLayout
 | |
|         android:id="@+id/appbar"
 | |
|         android:layout_height="wrap_content"
 | |
|         android:layout_width="match_parent"
 | |
|         android:theme="@style/AppTheme.AppBarOverlay"
 | |
|         app:elevation="0dp">
 | |
|         <android.support.v7.widget.Toolbar
 | |
|             android:id="@+id/tool_bar"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="wrap_content"
 | |
|             android:background="?attr/colorPrimary"
 | |
|             android:elevation="4dp"
 | |
|             app:popupTheme="@style/AppTheme.PopupOverlay"
 | |
|             tools:ignore="UnusedAttribute" >
 | |
|         </android.support.v7.widget.Toolbar>
 | |
|     </android.support.design.widget.AppBarLayout>
 | |
| 
 | |
|     <RelativeLayout
 | |
|         android:id="@+id/fragment_container"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="match_parent"
 | |
|         android:background="@android:color/white"
 | |
|         app:layout_behavior="@string/appbar_scrolling_view_behavior">
 | |
|     </RelativeLayout>
 | |
| 
 | |
| </android.support.design.widget.CoordinatorLayout> |