2016-01-13 16:25:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-20 16:37:29 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-07-24 10:19:56 +00:00
|
|
|
android:layout_height="55dp"
|
2020-07-28 10:31:36 +00:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
|
android:paddingEnd="16dp"
|
2020-07-23 13:40:51 +00:00
|
|
|
android:gravity="bottom">
|
2016-01-13 16:25:08 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/label"
|
2016-01-16 17:05:14 +00:00
|
|
|
android:layout_width="0dp"
|
2016-01-13 16:25:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-01-16 17:05:14 +00:00
|
|
|
android:layout_weight="1"
|
2020-07-23 13:40:51 +00:00
|
|
|
tools:text="Test header"
|
2022-05-02 15:25:53 +00:00
|
|
|
style="@style/Caption2"
|
|
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"/>
|
2020-07-23 13:40:51 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/count_pill"
|
|
|
|
|
android:layout_width="wrap_content"
|
2020-07-30 10:44:01 +00:00
|
|
|
android:layout_height="24dp"
|
2020-07-23 13:40:51 +00:00
|
|
|
android:visibility="gone"
|
2020-09-04 16:17:34 +00:00
|
|
|
style="@style/Pill.Window"
|
2022-05-02 15:25:53 +00:00
|
|
|
android:textSize="11sp"
|
2020-07-23 13:40:51 +00:00
|
|
|
android:textAllCaps="true"
|
|
|
|
|
android:letterSpacing="0.15"
|
2020-07-30 10:44:01 +00:00
|
|
|
android:gravity="center"
|
2020-07-23 13:40:51 +00:00
|
|
|
/>
|
2016-01-13 16:25:08 +00:00
|
|
|
</LinearLayout>
|