2016-09-22 14:02:01 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-06-20 09:30:58 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-09-22 14:02:01 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@color/brand_100"
|
|
|
|
|
android:clipChildren="true">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
2017-09-05 14:47:13 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:baselineAligned="false">
|
2016-09-22 14:02:01 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/btnPlusWrapper"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/btnPlus"
|
|
|
|
|
android:src="@drawable/plus"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@drawable/selection_highlight"
|
|
|
|
|
/>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/btnMinusWrapper"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/btnMinus"
|
|
|
|
|
android:src="@drawable/minus"
|
|
|
|
|
android:scaleType="center"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@drawable/selection_highlight" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@drawable/selection_highlight"
|
|
|
|
|
/>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/habit_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="12dp"
|
|
|
|
|
android:layout_marginRight="12dp"
|
|
|
|
|
android:layout_marginTop="6dp"
|
2017-06-20 09:30:58 +00:00
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
|
android:textColor="@color/white_75_alpha"
|
|
|
|
|
tools:text="Habit Text"/>
|
2016-09-22 14:02:01 +00:00
|
|
|
</LinearLayout>
|