AndroidAPS/app/src/main/res/layout/automation_dialog_choose_trigger.xml

31 lines
1.1 KiB
XML
Raw Normal View History

2018-10-16 00:07:13 +02:00
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
2018-10-16 00:07:13 +02: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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:padding="10dp">
2018-10-16 00:07:13 +02:00
<TextView
2018-10-16 00:07:13 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-10-01 13:11:10 +02:00
android:text="@string/please_choose_a_trigger_type"
android:textAppearance="@style/TextAppearance.AppCompat.Large" />
2018-10-16 00:07:13 +02:00
<RadioGroup
2019-07-22 16:28:53 +02:00
android:id="@+id/automation_chooseTriggerRadioGroup"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginVertical="5dp" />
2018-10-16 00:07:13 +02:00
2019-07-23 00:04:44 +02:00
<include layout="@layout/okcancel" />
2018-10-16 00:07:13 +02:00
</LinearLayout>
2018-10-16 00:07:13 +02:00
</ScrollView>