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

31 lines
1.2 KiB
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"
xmlns:tools="http://schemas.android.com/tools"
2022-05-24 09:13:51 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal"
android:layout_width="match_parent"
2016-03-28 16:43:15 +00:00
android:layout_height="wrap_content"
style="@style/HabiticaButton.Purple.Small"
2022-05-24 09:13:51 +00:00
android:background="@drawable/button_background"
android:foreground="?selectableItemBackground"
android:layout_marginVertical="8dp"
android:layout_marginHorizontal="21dp"
android:clickable="true"
android:focusable="true">
2016-03-28 16:43:15 +00:00
<TextView
android:id="@+id/textView"
2022-05-24 09:13:51 +00:00
android:layout_width="wrap_content"
2016-03-29 18:00:24 +00:00
android:layout_height="wrap_content"
style="@style/BottomMenuItemText"
tools:text="Menu Item"/>
2022-06-30 10:53:54 +00:00
<com.habitrpg.android.habitica.ui.views.CurrencyView
2022-05-24 09:13:51 +00:00
android:id="@+id/currency_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
tools:visibility="visible"
android:textColor="@color/white"
app:currency="gold"
tools:text="100"
android:layout_marginStart="8dp"/>
2016-03-28 16:43:15 +00:00
</LinearLayout>