2019-06-06 12:33:29 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-20 08:01:43 +00:00
|
|
|
tools:parentTag="android.widget.RelativeLayout"
|
2019-08-07 08:29:58 +00:00
|
|
|
tools:background="?colorPrimary">
|
2019-06-20 08:01:43 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/icon_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:src="@drawable/icon_habits_selected"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_centerHorizontal="true"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-07 08:29:58 +00:00
|
|
|
android:textColor="?textColorPrimaryDark"
|
2019-06-20 08:01:43 +00:00
|
|
|
tools:text="@string/habits"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:letterSpacing="0.05"
|
|
|
|
|
android:fontFamily="@string/font_family_regular"
|
|
|
|
|
android:paddingStart="@dimen/spacing_small"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_small"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:layout_below="@id/icon_view"
|
|
|
|
|
/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/selected_title_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
tools:text="@string/habits"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:letterSpacing="0.05"
|
|
|
|
|
android:fontFamily="@string/font_family_medium"
|
|
|
|
|
android:paddingStart="@dimen/spacing_small"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_small"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:layout_below="@id/icon_view"
|
|
|
|
|
/>
|
2019-06-06 12:33:29 +00:00
|
|
|
<TextView
|
2019-06-20 08:01:43 +00:00
|
|
|
android:id="@+id/badge"
|
2019-06-06 12:33:29 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-20 08:01:43 +00:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:layout_alignEnd="@id/icon_view"
|
|
|
|
|
android:minWidth="20dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
tools:text="10"
|
2019-06-06 12:33:29 +00:00
|
|
|
android:textColor="@color/white"
|
2019-06-20 08:01:43 +00:00
|
|
|
style="@style/Overline"
|
|
|
|
|
android:background="@drawable/badge_circle"
|
|
|
|
|
android:padding="3dp"
|
|
|
|
|
android:layout_marginEnd="-10dp"
|
|
|
|
|
android:visibility="invisible"
|
|
|
|
|
tools:visibility="visible"/>
|
2019-06-06 12:33:29 +00:00
|
|
|
</merge>
|