2019-04-28 17:43:54 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 20:24:02 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-28 17:43:54 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/header_title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingTop="12dp"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingBottom="12dp"
|
2019-04-28 17:43:54 -03:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textStyle="bold"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:text="Header" />
|
2019-04-28 17:43:54 -03:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/header_info"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="start|center_vertical"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingTop="12dp"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:paddingBottom="12dp"
|
2019-04-28 17:43:54 -03:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textSize="12sp"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:text="1 selected" />
|
|
|
|
</LinearLayout>
|