mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-16 23:04:56 +00:00
27 lines
1.0 KiB
XML
27 lines
1.0 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:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="13dp">
|
|
|
|
<TextView
|
|
android:id="@+id/titleTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/select_a_kiosk"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginEnd="5dp"/>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/items_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:listitem="@layout/select_kiosk_item">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
</LinearLayout> |