2016-09-29 17:48:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout 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="wrap_content"
|
|
|
|
|
android:background="@color/gem_view_background"
|
2016-12-07 11:14:03 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:padding="14dp">
|
2016-09-29 17:48:34 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="65dp"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:id="@+id/gem_image"
|
|
|
|
|
tools:src="@drawable/gems_21"
|
|
|
|
|
android:contentDescription="@string/gems"
|
|
|
|
|
android:layout_marginTop="20dp"/>
|
|
|
|
|
|
2020-09-10 09:23:01 +00:00
|
|
|
<LinearLayout
|
2020-09-01 10:53:46 +00:00
|
|
|
android:id="@+id/amount_text_wrapper"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-09-10 09:23:01 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center">
|
2020-09-01 10:53:46 +00:00
|
|
|
<ImageView
|
2020-09-10 09:23:01 +00:00
|
|
|
android:id="@+id/amount_background_right"
|
|
|
|
|
android:layout_width="30dp"
|
2020-09-01 10:53:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-09-10 09:23:01 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:scaleType="fitStart"
|
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
|
/>
|
2016-09-29 17:48:34 +00:00
|
|
|
<TextView
|
2020-09-10 09:23:01 +00:00
|
|
|
android:layout_width="wrap_content"
|
2016-09-29 17:48:34 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/gem_amount"
|
2017-09-11 11:31:20 +00:00
|
|
|
android:textColor="@color/blue_10"
|
2016-09-29 17:48:34 +00:00
|
|
|
android:gravity="center"
|
2020-09-01 10:53:46 +00:00
|
|
|
android:layout_gravity="center"
|
2016-09-29 17:48:34 +00:00
|
|
|
android:textSize="36sp"
|
|
|
|
|
tools:text="21" />
|
2020-09-10 09:23:01 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/amount_background_left"
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:scaleType="fitEnd"
|
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
2016-09-29 17:48:34 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2020-09-01 10:53:46 +00:00
|
|
|
android:id="@+id/gems_text_view"
|
2016-09-29 17:48:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/gems"
|
2017-09-11 11:31:20 +00:00
|
|
|
android:textColor="@color/blue_10"
|
2016-11-30 16:36:57 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginBottom="14dp" />
|
|
|
|
|
|
2016-12-07 11:14:03 +00:00
|
|
|
<Button
|
|
|
|
|
android:layout_width="match_parent"
|
2020-09-01 10:53:46 +00:00
|
|
|
android:layout_height="38dp"
|
2016-12-07 11:14:03 +00:00
|
|
|
android:id="@+id/purchase_button"
|
|
|
|
|
android:background="@drawable/purchase_button_background"
|
2020-09-01 10:53:46 +00:00
|
|
|
android:layout_marginHorizontal="8dp"
|
2016-12-07 11:14:03 +00:00
|
|
|
android:textColor="@color/white"
|
2019-11-25 13:58:20 +00:00
|
|
|
style="@style/Body1"
|
2016-12-07 11:14:03 +00:00
|
|
|
tools:text="$ 4.99"/>
|
2020-09-01 10:53:46 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/footer_text_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="#CAC7CE"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/Caption1"/>
|
2016-09-29 17:48:34 +00:00
|
|
|
</LinearLayout>
|