habitica-android/Habitica/res/layout/purchase_gem_view.xml
2017-09-11 13:31:20 +02:00

53 lines
No EOL
1.9 KiB
XML

<?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"
android:gravity="center"
android:padding="14dp">
<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"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/gem_amount"
android:textColor="@color/blue_10"
android:gravity="center"
android:textSize="36sp"
tools:text="21" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/gems"
android:textColor="@color/blue_10"
android:gravity="center"
android:layout_marginBottom="14dp" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/purchase_button"
android:background="@drawable/purchase_button_background"
android:textColor="@color/white"
tools:text="$ 4.99"/>
<ImageButton
android:id="@+id/seedsImageButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent"
android:src="@drawable/seeds_badge_store"
android:scaleType="fitCenter"
android:layout_marginTop="4dp"
android:visibility="gone"
/>
</LinearLayout>