2018-06-09 09:33:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<RelativeLayout 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
|
|
|
|
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"
|
2018-06-15 03:18:54 +00:00
|
|
|
android:layout_height="match_parent"
|
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_alignParentEnd="true"
|
2018-09-05 02:54:17 +00:00
|
|
|
android:layout_alignParentRight="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
2018-06-19 11:48:22 +00:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginRight="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"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:srcCompat="?attr/ic_add" />
|
2018-06-19 11:48:22 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
</RelativeLayout>
|