habitica-android/Habitica/res/layout/reward_item_card.xml

61 lines
2.6 KiB
XML
Raw Normal View History

2017-04-20 13:33:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-09-04 16:17:34 +00:00
android:background="@color/content_background">
2017-04-20 13:33:33 +00:00
<LinearLayout
2020-08-25 11:21:27 +00:00
android:id="@+id/main_task_wrapper"
2017-04-20 13:33:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
2020-08-25 11:21:27 +00:00
android:orientation="horizontal"
android:layout_marginHorizontal="@dimen/task_spacing_horizontal"
android:layout_marginVertical="@dimen/task_spacing_vertical"
android:background="@drawable/task_background"
android:clipChildren="true"
android:minHeight="@dimen/task_min_height">
2017-04-20 13:33:33 +00:00
2020-08-25 11:21:27 +00:00
<include layout="@layout/task_main_content" />
2017-04-20 13:33:33 +00:00
<ProgressBar
android:id="@+id/syncing_view"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_vertical"
2020-09-17 11:47:02 +00:00
android:layout_marginStart="@dimen/spacing_small"
android:layout_marginEnd="@dimen/spacing_small"
style="@style/Widget.AppCompat.ProgressBar"/>
<ImageButton
android:id="@+id/error_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:background="@color/transparent"
android:src="@drawable/ic_warning_black"
2020-09-17 11:47:02 +00:00
android:layout_marginStart="@dimen/spacing_small"
android:layout_marginEnd="@dimen/spacing_small"/>
2017-07-25 10:23:01 +00:00
<LinearLayout
android:id="@+id/buyButton"
2020-08-25 11:21:27 +00:00
android:layout_width="56dp"
android:layout_height="fill_parent"
2017-07-25 10:23:01 +00:00
android:background="@color/reward_buy_button_bg"
android:gravity="center"
android:orientation="vertical">
<ImageView
2017-09-05 13:56:34 +00:00
android:id="@+id/gold_icon"
2017-07-25 10:23:01 +00:00
android:layout_width="22dp"
android:layout_height="22dp"
2020-08-25 11:21:27 +00:00
android:paddingBottom="2dp"/>
2017-07-25 10:23:01 +00:00
<TextView
android:id="@+id/priceLabel"
2017-07-25 10:23:01 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2017-09-11 11:31:20 +00:00
android:textColor="@color/yellow_10"
2017-07-25 10:23:01 +00:00
android:gravity="center_horizontal"
tools:text="150"
style="@style/Body1"/>
</LinearLayout>
2017-04-20 13:33:33 +00:00
</LinearLayout>
2017-01-11 22:46:26 +00:00
</FrameLayout>