2024-09-24 13:22:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:layout_marginBottom="2dp"
|
|
|
|
|
android:src="@drawable/gift_sub_gift"
|
|
|
|
|
android:importantForAccessibility="no" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal"
|
2024-10-14 11:10:28 +00:00
|
|
|
android:textSize="17sp"
|
|
|
|
|
android:fontFamily="@string/font_family_medium"
|
2024-09-24 13:22:18 +00:00
|
|
|
android:text="@string/subscribe_gift_description"
|
|
|
|
|
android:layout_marginVertical="14dp"
|
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/gift_subscription_button"
|
|
|
|
|
style="@style/HabiticaButton"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:backgroundTint="@color/brand_200"
|
|
|
|
|
android:text="@string/gift_subscription"
|
|
|
|
|
android:textAllCaps="false"
|
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
</LinearLayout>
|