2016-03-28 16:43:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-07-13 15:28:26 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-04-15 11:29:48 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-03-29 18:00:24 +00:00
|
|
|
style="@style/BottomMenu"
|
|
|
|
|
android:clickable="false">
|
2020-07-13 15:28:26 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Title"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/Subheader1"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/window_background"
|
2020-07-13 15:28:26 +00:00
|
|
|
android:padding="8dp"/>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/menu_items"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"/>
|
2016-03-28 16:43:15 +00:00
|
|
|
</LinearLayout>
|