mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
32 lines
1.1 KiB
XML
32 lines
1.1 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:minHeight="38dp"
|
||
|
android:background="?attr/selectableItemBackground"
|
||
|
android:clickable="true"
|
||
|
android:focusable="true"
|
||
|
android:gravity="center_vertical"
|
||
|
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:textColor="?android:attr/textColorPrimary"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:textSize="14sp"
|
||
|
android:textStyle="bold"
|
||
|
tools:text="@string/fragment_whats_new"/>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="2dp"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginEnd="4dp"
|
||
|
android:background="?attr/separator_color"/>
|
||
|
</LinearLayout>
|