habitica-android/Habitica/res/layout/menu_bottom_sheet.xml

24 lines
917 B
XML
Raw Normal View History

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"
android:layout_height="wrap_content"
2016-03-29 18:00:24 +00:00
style="@style/BottomMenu"
2022-04-04 14:39:57 +00:00
android:clickable="false"
android:background="@drawable/rounded_avatar_bg">
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"
2022-04-04 14:39:57 +00:00
android:background="@drawable/bottom_sheet_title"
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>