2018-06-09 09:33:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-10 19:57:35 +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-06-17 21:29:28 +00:00
|
|
|
android:id="@+id/relLay"
|
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
|
|
|
|
2018-06-18 09:34:59 +00:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/floatingActionButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:clickable="true" />
|
|
|
|
|
2018-06-16 10:52:26 +00:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/usedTabs"
|
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"
|
2018-06-17 21:29:28 +00:00
|
|
|
android:layout_margin="0dp"
|
|
|
|
android:paddingBottom="0dp"
|
2018-06-18 09:34:59 +00:00
|
|
|
android:paddingTop="0dp" >
|
|
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
2018-06-09 09:33:03 +00:00
|
|
|
|
2018-06-10 19:57:35 +00:00
|
|
|
</RelativeLayout>
|