59 lines
2.4 KiB
XML
59 lines
2.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<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"
|
||
|
tools:context=".Main2Activity">
|
||
|
<LinearLayout
|
||
|
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
|
||
|
>
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:theme="@style/ToolBarTheme.AppBarOverlay">
|
||
|
|
||
|
<android.support.v7.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
app:popupTheme="@style/ToolBarTheme.PopupOverlay" >
|
||
|
|
||
|
<TextView android:id="@+id/mTextMessage"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Clock" />
|
||
|
</android.support.v7.widget.Toolbar>
|
||
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
||
|
<include layout="@layout/realcontent" />
|
||
|
|
||
|
<android.support.design.widget.BottomNavigationView
|
||
|
android:id="@+id/navigation"
|
||
|
android:layout_width="match_parent"
|
||
|
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:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||
|
app:menu="@menu/navigation" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
<android.support.design.widget.FloatingActionButton
|
||
|
android:id="@+id/fab"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="bottom|start"
|
||
|
android:layout_margin="@dimen/fab_margin"
|
||
|
app:srcCompat="@android:drawable/ic_dialog_email" />
|
||
|
|
||
|
|
||
|
</android.support.design.widget.CoordinatorLayout>
|