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

25 lines
996 B
XML
Raw Normal View History

2020-11-23 17:13:49 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-07-07 13:54:17 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-11-23 17:13:49 +00:00
android:orientation="horizontal"
android:layout_width="wrap_content"
2022-05-17 10:23:25 +00:00
android:layout_height="60dp"
android:background="@drawable/button_background_primary"
2022-07-07 13:54:17 +00:00
android:gravity="center"
android:padding="6dp">
2020-11-23 17:13:49 +00:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:letterSpacing="0.02"
android:fontFamily="@string/font_family_medium"
android:text="@string/hatch"
2022-05-17 10:23:25 +00:00
android:textColor="@color/white"
2020-11-23 17:13:49 +00:00
android:layout_marginEnd="6dp"
/>
2022-06-30 10:53:54 +00:00
<com.habitrpg.android.habitica.ui.views.CurrencyView
2020-11-23 17:13:49 +00:00
android:id="@+id/currencyView"
android:layout_width="wrap_content"
2022-07-07 13:54:17 +00:00
android:layout_height="wrap_content"
app:fontFamily="sans-serif-medium"/>
2020-11-23 17:13:49 +00:00
</LinearLayout>