1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-21 12:19:09 -05:00
wulkanowy-mirror/app/src/main/res/layout/activity_dashboard.xml

38 lines
1.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2017-04-29 08:27:38 -05:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
2017-04-29 08:27:38 -05:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
2017-04-29 08:27:38 -05:00
tools:context="io.github.wulkanowy.activity.dashboard.DashboardActivity">
<FrameLayout
android:id="@+id/content"
2017-04-29 08:27:38 -05:00
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
2017-04-29 08:27:38 -05:00
<TextView
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_vertical_margin"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:text="@string/title_dashboard" />
2017-04-29 08:27:38 -05:00
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?android:attr/windowBackground"
app:menu="@menu/navigation" />
</LinearLayout>