2019-09-26 12:17:18 +00:00
|
|
|
<?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"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/window_background">
|
2019-09-26 12:17:18 +00:00
|
|
|
<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"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2019-09-26 16:02:28 +00:00
|
|
|
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"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2019-09-26 16:02:28 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:maxWidth="240dp"/>
|
2019-09-26 12:17:18 +00:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/button"
|
|
|
|
|
android:layout_width="wrap_content"
|
2019-09-26 16:02:28 +00:00
|
|
|
android:layout_height="32dp"
|
|
|
|
|
android:minWidth="110dp"
|
2019-09-26 12:17:18 +00:00
|
|
|
android:text="@string/subscribe"
|
2019-09-26 16:02:28 +00:00
|
|
|
style="@style/HabiticaButton.Purple"
|
|
|
|
|
android:layout_marginTop="14dp"/>
|
2019-09-26 12:17:18 +00:00
|
|
|
</LinearLayout>
|
2019-09-26 16:02:28 +00:00
|
|
|
<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" />
|
2019-09-26 12:17:18 +00:00
|
|
|
</merge>
|