49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <android.support.constraint.ConstraintLayout 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"
 | |
|     style="@style/llOutside"
 | |
|    android:layout_marginBottom ="0dp"
 | |
| 
 | |
| app:layout_behavior="@string/appbar_scrolling_view_behavior"
 | |
| >
 | |
|     <LinearLayout
 | |
|     android:id="@+id/activty_content"
 | |
|     android:orientation="vertical"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent"
 | |
| 
 | |
|     >
 | |
|         <!--android:background="@drawable/common_full_open_on_phone"-->
 | |
|         <FrameLayout
 | |
|             android:id="@+id/realtabcontent"
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="match_parent"
 | |
|             android:layout_weight="1">
 | |
| 
 | |
| 
 | |
|         </FrameLayout>
 | |
|         <android.support.design.widget.TextInputEditText
 | |
|             android:layout_width="wrap_content"
 | |
|             android:layout_height="10dp" />
 | |
| </LinearLayout>
 | |
| 
 | |
| 
 | |
|     <android.support.design.widget.BottomNavigationView
 | |
|         android:id="@+id/navigation"
 | |
|         android:layout_width="match_parent"
 | |
|         android:layout_height="@dimen/botoomNavi"
 | |
|         android:layout_alignParentBottom="true"
 | |
|         android:background="?android:attr/windowBackground"
 | |
|         android:paddingTop="2dp"
 | |
|         app:layout_behavior="@string/appbar_scrolling_view_behavior"
 | |
|         app:layout_constraintBottom_toBottomOf="parent"
 | |
|         app:layout_constraintLeft_toLeftOf="parent"
 | |
|         app:layout_constraintRight_toRightOf="parent"
 | |
| 
 | |
|         app:menu="@menu/navigation" />
 | |
| </android.support.constraint.ConstraintLayout>
 | |
| 
 | |
| 
 | |
| 
 |