2019-04-28 20:43:54 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-28 20:43:54 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:gravity="center_vertical"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:minHeight="38dp"
|
2019-04-28 20:43:54 +00:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/header_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="16dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-04-28 20:43:54 +00:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="bold"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:text="@string/fragment_feed_title" />
|
2019-04-28 20:43:54 +00:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="4dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:background="?attr/separator_color" />
|
|
|
|
</LinearLayout>
|