2021-03-04 21:18:38 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-06-12 16:21:13 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-04 21:18:38 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-05-23 21:03:21 +02:00
|
|
|
tools:context=".MainActivity">
|
2021-05-21 22:02:20 +02:00
|
|
|
|
2021-06-12 16:21:13 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/addbutton_fab"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-06-12 16:21:13 +02:00
|
|
|
android:layout_gravity="top|end"
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
android:layout_marginVertical="70dp"
|
|
|
|
android:background="@drawable/button_round"
|
|
|
|
android:hapticFeedbackEnabled="true"
|
|
|
|
android:src="@drawable/add_black_24dp" />
|
2021-04-16 21:41:45 +02:00
|
|
|
|
2021-06-12 16:21:13 +02:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/listView"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_width="wrap_content"
|
2021-06-12 16:21:13 +02:00
|
|
|
android:layout_height="742dp"
|
|
|
|
android:visibility="visible"/>
|
|
|
|
|
2021-04-16 21:41:45 +02:00
|
|
|
|
2021-06-12 16:21:13 +02:00
|
|
|
</FrameLayout>
|
2021-05-23 21:03:21 +02:00
|
|
|
|