1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-10-06 02:40:47 +00:00
NewPipe/app/src/main/res/layout/missions_header.xml

30 lines
964 B
XML
Raw Normal View History

<?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"
android:layout_width="match_parent"
android:layout_height="30dp"
2020-10-09 18:24:02 +00:00
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
2020-10-09 18:24:02 +00:00
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:orientation="vertical">
<TextView
android:id="@+id/item_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
2020-10-09 18:24:02 +00:00
android:text="relative header"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="16sp"
2020-10-09 18:24:02 +00:00
android:textStyle="bold" />
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@color/black_settings_accent_color" />
2018-11-08 22:03:30 +00:00
</LinearLayout>