2018-06-09 11:33:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-09-04 23:54:17 -03:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-18 11:34:59 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-04 23:54:17 -03:00
|
|
|
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">
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-09-04 23:54:17 -03:00
|
|
|
android:id="@+id/selectedTabs"
|
2018-06-09 11:33:03 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-09-04 23:54:17 -03:00
|
|
|
tools:listitem="@layout/list_choose_tabs"/>
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2018-09-04 23:54:17 -03:00
|
|
|
android:id="@+id/addTabsButton"
|
2018-06-19 13:48:22 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
2018-09-04 23:54:17 -03:00
|
|
|
android:layout_alignParentRight="true"
|
2018-06-19 13:48:22 +02:00
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2018-09-04 23:54:17 -03:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
app:backgroundTint="?attr/colorPrimary"
|
|
|
|
app:fabSize="auto"
|
|
|
|
app:srcCompat="?attr/ic_add"/>
|
2018-06-19 13:48:22 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
</RelativeLayout>
|