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"
|
2019-04-15 11:29:48 +00:00
|
|
|
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"
|
2019-04-15 11:29:48 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-03-28 16:43:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2022-05-20 08:51:32 +00:00
|
|
|
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"
|
2019-04-15 11:29:48 +00:00
|
|
|
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"
|
2019-04-15 11:29:48 +00:00
|
|
|
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>
|