2015-06-20 18:46:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-05-10 14:07:12 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-09 03:18:20 +00:00
|
|
|
android:id="@+id/gearElementsLayout"
|
2015-06-20 18:46:04 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-08-17 21:37:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:clickable="false">
|
2015-11-09 03:18:20 +00:00
|
|
|
<ImageView
|
2016-05-10 14:07:12 +00:00
|
|
|
android:id="@+id/rewardImageView"
|
2015-11-09 03:18:20 +00:00
|
|
|
android:layout_width="60dp"
|
|
|
|
|
android:padding="5dp"
|
|
|
|
|
android:layout_height="60dp"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:layout_gravity="center_vertical" />
|
2015-11-09 03:18:20 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/textReward"
|
|
|
|
|
android:orientation="vertical"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:layout_width="0dp"
|
2015-10-29 19:49:57 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:layout_weight="1"
|
2015-12-02 17:46:27 +00:00
|
|
|
android:paddingBottom="@dimen/task_top_bottom_padding"
|
|
|
|
|
android:paddingTop="@dimen/task_top_bottom_padding"
|
|
|
|
|
android:paddingLeft='16dp'
|
2015-12-05 15:12:01 +00:00
|
|
|
android:paddingRight="@dimen/reward_spacing"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:layout_gravity="center_vertical">
|
2015-11-09 03:18:20 +00:00
|
|
|
|
2016-06-21 09:28:51 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
2015-11-09 03:18:20 +00:00
|
|
|
android:id="@+id/checkedTextView"
|
|
|
|
|
style="@style/CardTitle"
|
2015-12-05 15:12:01 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:layout_height="wrap_content"/>
|
2015-11-09 03:18:20 +00:00
|
|
|
|
2016-06-21 09:28:51 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
2015-11-24 20:21:32 +00:00
|
|
|
android:id="@+id/notesTextView"
|
2015-11-09 03:18:20 +00:00
|
|
|
style="@style/CardText"
|
2015-12-05 15:12:01 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:layout_height="wrap_content"/>
|
2015-11-09 03:18:20 +00:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnReward"
|
2015-12-05 15:12:01 +00:00
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="45dp"
|
|
|
|
|
android:layout_marginRight="8dp"
|
2016-02-03 12:56:43 +00:00
|
|
|
android:layout_marginEnd="8dp"
|
2015-11-09 03:18:20 +00:00
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:textSize="15sp"
|
|
|
|
|
android:drawableLeft="@drawable/ic_header_gold"
|
2016-02-03 12:56:43 +00:00
|
|
|
android:drawableStart="@drawable/ic_header_gold"
|
2015-11-09 03:18:20 +00:00
|
|
|
android:background="@drawable/rounded_purple_square"
|
2015-12-05 15:12:01 +00:00
|
|
|
android:paddingLeft="6dp"
|
2016-05-10 14:07:12 +00:00
|
|
|
android:paddingStart="6dp" />
|
|
|
|
|
</LinearLayout>
|