2015-06-20 18:46:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-01-11 22:46:26 +00:00
|
|
|
<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">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
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"
|
2017-01-11 22:46:26 +00:00
|
|
|
android:clickable="false"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/rewardImageView"
|
|
|
|
|
android:layout_width="60dp"
|
|
|
|
|
android:layout_height="60dp"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:padding="5dp" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/textReward"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:paddingBottom="@dimen/task_top_bottom_padding"
|
|
|
|
|
android:paddingEnd="@dimen/reward_spacing"
|
|
|
|
|
android:paddingLeft="@dimen/task_text_padding"
|
|
|
|
|
android:paddingRight="@dimen/reward_spacing"
|
|
|
|
|
android:paddingStart="@dimen/task_text_padding"
|
|
|
|
|
android:paddingTop="@dimen/task_top_bottom_padding">
|
|
|
|
|
|
|
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
|
|
|
|
android:id="@+id/checkedTextView"
|
|
|
|
|
style="@style/Subheader3"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="#000"
|
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
|
|
|
|
android:id="@+id/notesTextView"
|
|
|
|
|
style="@style/Caption3"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Notes"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/btnReward"
|
2017-01-12 20:44:40 +00:00
|
|
|
android:layout_width="64dp"
|
|
|
|
|
android:layout_height="28dp"
|
2017-01-11 22:46:26 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
|
android:layout_marginRight="8dp"
|
2017-01-12 20:44:40 +00:00
|
|
|
android:gravity="left|center_vertical"
|
|
|
|
|
android:drawablePadding="5dp"
|
2017-01-11 22:46:26 +00:00
|
|
|
android:background="@drawable/rounded_purple_square"
|
|
|
|
|
android:drawableLeft="@drawable/ic_header_gold"
|
|
|
|
|
android:drawableStart="@drawable/ic_header_gold"
|
2017-01-12 20:44:40 +00:00
|
|
|
android:paddingLeft="15dp"
|
|
|
|
|
android:paddingStart="15dp"
|
2017-01-11 22:46:26 +00:00
|
|
|
android:textColor="@color/white"
|
2017-01-12 20:44:40 +00:00
|
|
|
tools:text="15"
|
|
|
|
|
android:textSize="15sp">
|
|
|
|
|
</Button>
|
2017-01-11 22:46:26 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
|
android:background="@color/task_border_gray" />
|
|
|
|
|
</FrameLayout>
|