habitica-android/Habitica/res/layout/promo_subscription_buy_gems.xml
2022-12-20 13:37:10 +01:00

55 lines
No EOL
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:parentTag="android.widget.RelativeLayout">
<LinearLayout
android:id="@+id/contentWrapper"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:orientation="vertical"
android:gravity="center"
android:paddingStart="@dimen/spacing_large"
android:paddingEnd="@dimen/spacing_large"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/promo_subscription_buy_gems_prompt"
android:textColor="@color/text_secondary"
android:textSize="14sp"
android:textStyle="bold"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/promo_subscription_buy_gems_description"
android:textColor="@color/text_secondary"
android:textSize="12sp"
android:textAlignment="center"
android:maxWidth="240dp"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:minWidth="110dp"
android:text="@string/subscribe"
style="@style/HabiticaButton.Purple.Small"
android:layout_marginTop="14dp"/>
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/subscription_promo_gems"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/subscription_promo_gold"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true" />
</merge>