pda/zhuike/src/main/res/layout/realcontent.xml

48 lines
1.6 KiB
XML
Raw Normal View History

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"
2019-02-21 23:56:21 +08:00
style="@style/llOutside"
2019-02-01 09:19:44 +08:00
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"
2019-04-14 23:17:31 +08:00
android:layout_height="@dimen/botoomNavi"
2019-02-12 13:23:07 +08:00
android:layout_alignParentBottom="true"
android:background="?android:attr/windowBackground"
2019-04-15 23:26:24 +08:00
android:paddingTop="2dp"
2019-02-12 13:23:07 +08:00
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
2019-02-24 00:21:34 +08:00
2019-02-12 13:23:07 +08:00
app:menu="@menu/navigation" />
2019-02-01 09:19:44 +08:00
</android.support.constraint.ConstraintLayout>