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

57 lines
2.2 KiB
XML
Raw Permalink Normal View History

2022-04-21 11:31:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginHorizontal="@dimen/spacing_xlarge"
android:layout_marginVertical="@dimen/spacing_large">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/enchanted_armoire_drop_rates"
2022-08-09 05:57:45 +00:00
style="@style/ArmoireTitleTextView"
android:gravity="center_horizontal"
2022-04-21 11:31:33 +00:00
android:textAlignment="center"
android:layout_marginBottom="18dp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/text_primary"
android:text="@string/armoire_rate_equipment_title"
style="@style/ArmoireSubHeader" />
2022-04-21 11:31:33 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/armoire_rate_equipment_description"
2022-08-09 05:57:45 +00:00
style="@style/ArmoireDescriptionTextView"
2022-04-21 11:31:33 +00:00
android:layout_marginBottom="12dp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/text_primary"
android:text="@string/armoire_rate_food_title"
style="@style/ArmoireSubHeader" />
2022-04-21 11:31:33 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/armoire_rate_food_description"
2022-08-09 05:57:45 +00:00
style="@style/ArmoireDescriptionTextView"
2022-04-21 11:31:33 +00:00
android:layout_marginBottom="12dp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/text_primary"
android:text="@string/armoire_rate_experience_title"
style="@style/ArmoireSubHeader" />
2022-04-21 11:31:33 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/armoire_rate_experience_description"
2022-08-09 05:57:45 +00:00
style="@style/ArmoireDescriptionTextView"
2022-04-21 11:31:33 +00:00
/>
</LinearLayout>