|
|
@@ -1,5 +1,5 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
@@ -16,6 +16,28 @@
|
|
|
android:id="@+id/pager"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="0px"
|
|
|
- android:layout_weight="1" /> >
|
|
|
+ android:layout_weight="1" />
|
|
|
|
|
|
-</LinearLayout>
|
|
|
+ <ListView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:id="@+id/listview2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+
|
|
|
+ <android.support.design.widget.FloatingActionButton
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:clickable="true"
|
|
|
+ app:fabSize="normal"
|
|
|
+ app:srcCompat="@android:drawable/ic_menu_add"
|
|
|
+ android:id="@+id/floatingActionButton"
|
|
|
+ app:backgroundTint="@color/colorPrimary"
|
|
|
+ app:elevation="7dp"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_alignParentEnd="true"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_gravity="end|bottom"
|
|
|
+ android:layout_marginBottom="15dp"
|
|
|
+ android:layout_marginRight="15dp"/>
|
|
|
+ >
|
|
|
+
|
|
|
+</RelativeLayout>
|