1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-07-01 01:23:19 +00:00
NewPipe/app/src/main/res/layout/select_kiosk_fragment.xml

26 lines
1005 B
XML
Raw Normal View History

2017-10-09 12:22:27 +00:00
<?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"
2017-10-13 11:55:55 +00:00
android:layout_height="match_parent"
2020-10-09 18:24:02 +00:00
android:orientation="vertical"
2017-10-13 11:55:55 +00:00
android:padding="13dp">
2017-10-09 12:22:27 +00:00
<org.schabi.newpipe.views.NewPipeTextView
2017-10-09 12:22:27 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
2020-10-09 18:24:02 +00:00
android:layout_marginLeft="10dp"
2017-10-09 12:22:27 +00:00
android:layout_marginTop="5dp"
2020-10-09 18:24:02 +00:00
android:layout_marginEnd="5dp"
2017-10-09 12:22:27 +00:00
android:layout_marginRight="5dp"
2020-10-09 18:24:02 +00:00
android:text="@string/select_a_kiosk"
android:textAppearance="?android:attr/textAppearanceLarge" />
2017-10-09 12:22:27 +00:00
2019-10-04 12:59:08 +00:00
<androidx.recyclerview.widget.RecyclerView
2017-10-09 12:22:27 +00:00
android:id="@+id/items_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:listitem="@layout/select_kiosk_item" />
2020-10-09 18:24:02 +00:00
</LinearLayout>