2017-11-17 19:09:36 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-17 22:12:16 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-17 19:09:36 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="48dp"
|
2017-11-17 22:12:16 +00:00
|
|
|
android:paddingLeft="@dimen/drawer_padding"
|
|
|
|
|
android:paddingRight="@dimen/drawer_padding"
|
|
|
|
|
android:gravity="center_vertical">
|
2017-11-17 19:09:36 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-17 22:12:16 +00:00
|
|
|
style="@style/Body1"
|
|
|
|
|
android:textColor="@color/gray_50"
|
|
|
|
|
tools:text="Tasks"/>
|
2017-11-17 19:09:36 +00:00
|
|
|
|
|
|
|
|
<TextView
|
2018-02-14 10:14:13 +00:00
|
|
|
android:id="@+id/pillView"
|
2017-11-17 19:09:36 +00:00
|
|
|
style="@style/Pill.Selected"
|
|
|
|
|
android:background="@drawable/pill_bg_purple_200"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-14 10:51:54 +00:00
|
|
|
tools:visibility="visible"
|
|
|
|
|
tools:text="Test"
|
2017-11-17 19:09:36 +00:00
|
|
|
android:visibility="gone"/>
|
2018-02-14 10:14:13 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/additionalInfoView"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-14 10:51:54 +00:00
|
|
|
tools:visibility="visible"
|
|
|
|
|
tools:text="Test"
|
2018-02-14 10:14:13 +00:00
|
|
|
android:visibility="gone"/>
|
2017-11-17 19:09:36 +00:00
|
|
|
</LinearLayout>
|