mirror of https://github.com/TeamNewPipe/NewPipe
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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"
|
|
android:paddingRight="16dp"
|
|
android:paddingBottom="12dp"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold"
|
|
tools:text="Header" />
|
|
|
|
<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"
|
|
android:paddingRight="16dp"
|
|
android:paddingBottom="12dp"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="12sp"
|
|
tools:text="1 selected" />
|
|
</LinearLayout>
|