2019-02-01 09:19:44 +08:00
|
|
|
<?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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
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"
|
2019-02-12 13:23:07 +08:00
|
|
|
android:background="@drawable/common_full_open_on_phone"
|
2019-02-01 09:19:44 +08:00
|
|
|
>
|
|
|
|
|
2019-02-12 13:23:07 +08:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/realtabcontent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1">
|
2019-02-01 09:19:44 +08:00
|
|
|
|
|
|
|
|
2019-02-12 13:23:07 +08:00
|
|
|
</FrameLayout>
|
|
|
|
<android.support.design.widget.TextInputEditText
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="10dp" />
|
2019-02-01 09:19:44 +08:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2019-02-12 13:23:07 +08:00
|
|
|
<android.support.design.widget.BottomNavigationView
|
|
|
|
android:id="@+id/navigation"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:background="?android:attr/windowBackground"
|
|
|
|
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" />
|
2019-02-01 09:19:44 +08:00
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|