NewPipe/app/src/main/res/layout/fragment_choose_tabs.xml

32 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-10-09 20:24:02 +02:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-06-15 05:18:54 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2019-10-04 14:59:08 +02:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/selectedTabs"
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-10-09 20:24:02 +02:00
tools:listitem="@layout/list_choose_tabs" />
2019-10-04 14:59:08 +02:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/addTabsButton"
2018-06-19 13:48:22 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
2020-10-09 20:24:02 +02:00
android:layout_alignParentBottom="true"
2018-06-19 13:48:22 +02:00
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
2020-10-09 20:24:02 +02:00
android:layout_marginBottom="16dp"
android:clickable="true"
android:focusable="true"
app:backgroundTint="?attr/colorPrimary"
app:fabSize="auto"
2021-03-27 15:45:49 +01:00
app:srcCompat="@drawable/ic_add" />
2018-06-19 13:48:22 +02:00
2020-10-09 20:24:02 +02:00
</RelativeLayout>