2018-12-05 21:22:32 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-07-11 19:18:05 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-05 21:22:32 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="info.nightscout.androidaps.plugins.general.automation.dialogs.EditEventDialog">
|
|
|
|
|
2019-07-11 19:18:05 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="10dp">
|
2018-12-05 21:22:32 +01:00
|
|
|
|
2019-07-11 19:18:05 +02:00
|
|
|
<TextView
|
2018-12-05 21:22:32 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-07-11 19:18:05 +02:00
|
|
|
android:text="@string/triggers" />
|
2018-12-05 21:22:32 +01:00
|
|
|
|
2019-07-11 19:18:05 +02:00
|
|
|
<LinearLayout
|
2019-07-18 23:49:59 +02:00
|
|
|
android:id="@+id/automation_layoutTrigger"
|
2019-07-11 19:18:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:orientation="vertical" />
|
2018-12-05 21:22:32 +01:00
|
|
|
|
2019-07-11 19:18:05 +02:00
|
|
|
<include layout="@layout/mdtp_done_button" />
|
2018-12-05 21:22:32 +01:00
|
|
|
|
2019-07-11 19:18:05 +02:00
|
|
|
</LinearLayout>
|
2018-12-05 21:22:32 +01:00
|
|
|
|
2019-07-11 19:18:05 +02:00
|
|
|
</ScrollView>
|