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"
|
2019-01-08 15:14:09 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="48dp"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="@dimen/drawer_padding"
|
|
|
|
|
android:paddingEnd="@dimen/drawer_padding"
|
2019-01-08 15:14:09 +00:00
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<LinearLayout
|
2017-11-17 19:09:36 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-08 15:14:09 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body1"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_primary"
|
2019-01-08 15:14:09 +00:00
|
|
|
tools:text="Tasks"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/additionalInfoView"
|
|
|
|
|
android:textSize="11sp"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
tools:text="Test"
|
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
</LinearLayout>
|
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"/>
|
2019-08-07 12:59:00 +00:00
|
|
|
<View
|
|
|
|
|
android:id="@+id/bubble_view"
|
|
|
|
|
style="@style/Pill.Selected"
|
|
|
|
|
android:background="@drawable/pill_bg_purple_200"
|
|
|
|
|
android:layout_width="12dp"
|
|
|
|
|
android:layout_height="12dp"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:visibility="gone"/>
|
2017-11-17 19:09:36 +00:00
|
|
|
</LinearLayout>
|