2018-06-09 09:33:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-27 01:20:23 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-18 09:34:59 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-05 02:54:17 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-06-15 03:18:54 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-06-09 09:33:03 +00:00
|
|
|
|
2021-09-04 17:32:38 +00:00
|
|
|
<org.schabi.newpipe.views.NewPipeTextView
|
2021-08-27 01:20:23 +00:00
|
|
|
android:id="@+id/helpTextView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
android:text="@string/main_page_content_swipe_remove"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-09-05 02:54:17 +00:00
|
|
|
android:id="@+id/selectedTabs"
|
2018-06-09 09:33:03 +00:00
|
|
|
android:layout_width="match_parent"
|
2021-08-27 01:20:23 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/helpTextView"
|
|
|
|
app:layout_constraintVertical_bias="1.0"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:listitem="@layout/list_choose_tabs" />
|
2018-06-09 09:33:03 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2018-09-05 02:54:17 +00:00
|
|
|
android:id="@+id/addTabsButton"
|
2018-06-19 11:48:22 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginBottom="16dp"
|
2018-09-05 02:54:17 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
app:backgroundTint="?attr/colorPrimary"
|
|
|
|
app:fabSize="auto"
|
2021-08-27 01:20:23 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-03-27 14:45:49 +00:00
|
|
|
app:srcCompat="@drawable/ic_add" />
|
2018-06-19 11:48:22 +00:00
|
|
|
|
2021-08-27 01:20:23 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|