37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
tools:context="info.nightscout.androidaps.plugins.general.automation.AutomationFragment">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/automation_eventListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/automation_logView"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginBottom="-100dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/automation_logView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/automation_fabAddEvent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:src="@drawable/ic_add_black_24dp"
|
|
tools:ignore="RelativeOverlap" />
|
|
|
|
</RelativeLayout>
|