122 lines
4.2 KiB
XML
122 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.DrawerLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true"
|
|
tools:openDrawer="start">
|
|
|
|
<android.support.constraint.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/activty_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/colorAccent"
|
|
android:minHeight="?attr/actionBarSize">
|
|
<!--
|
|
toolbar:navigationIcon="@mipmap/ic_launcher_round"
|
|
toolbar:logo="@mipmap/ic_launcher"
|
|
toolbar:subtitle="456"
|
|
toolbar:title="123">
|
|
>
|
|
-->
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Clock" />
|
|
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
<FrameLayout
|
|
android:id="@+id/realtabcontent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/title_home" />
|
|
|
|
<TextView
|
|
android:id="@+id/message2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/title_home" />
|
|
|
|
<TextView
|
|
android:id="@+id/message3"
|
|
android:layout_width="159dp"
|
|
android:layout_height="92dp"
|
|
android:text="@string/title_home" />
|
|
<TextView
|
|
android:id="@+id/message4"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="28dp"
|
|
android:layout_marginRight="28dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:text="@string/title_home"
|
|
app:layout_constraintBottom_toTopOf="@+id/navigation"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
<android.support.design.widget.BottomNavigationView
|
|
android:id="@+id/navigation"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="0dp"
|
|
android:layout_marginEnd="0dp"
|
|
android:background="?android:attr/windowBackground"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:menu="@menu/navigation" />
|
|
|
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
|
|
<android.support.design.widget.NavigationView
|
|
android:id="@+id/nav_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:fitsSystemWindows="true"
|
|
app:headerLayout="@layout/nav_header_main"
|
|
app:menu="@menu/activity_main_drawer" />
|
|
</android.support.v4.widget.DrawerLayout>
|
|
|
|
|
|
|
|
|