2019-12-20 13:58:51 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-10-19 19:24:33 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-12-20 13:58:51 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:minWidth="300dp"
|
|
|
|
android:orientation="vertical"
|
2019-12-20 18:55:54 +01:00
|
|
|
tools:context=".dialogs.CarbsDialog">
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-12-20 18:55:54 +01:00
|
|
|
<RelativeLayout
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2019-12-21 15:26:41 +01:00
|
|
|
android:background="@color/dialog_title_background"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:orientation="horizontal"
|
2019-12-20 18:55:54 +01:00
|
|
|
android:padding="5dp">
|
2019-12-20 13:58:51 +01:00
|
|
|
|
2021-01-21 17:03:05 +01:00
|
|
|
<ImageView
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:contentDescription="@string/carbs"
|
2020-10-19 19:24:33 +02:00
|
|
|
app:srcCompat="@drawable/ic_cp_bolus_carbs" />
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-20 18:55:54 +01:00
|
|
|
android:layout_centerInParent="true"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:text="@string/carbs"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
2019-12-20 18:55:54 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/spacer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp" />
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-20 18:55:54 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="5dp">
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
<CheckBox
|
2021-01-21 17:03:05 +01:00
|
|
|
android:id="@+id/activity_tt"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:text="@string/start_activity_tt" />
|
|
|
|
|
|
|
|
<CheckBox
|
2021-01-21 17:03:05 +01:00
|
|
|
android:id="@+id/eating_soon_tt"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="@string/start_eating_soon_tt" />
|
|
|
|
|
|
|
|
<CheckBox
|
2021-01-21 17:03:05 +01:00
|
|
|
android:id="@+id/hypo_tt"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="@string/start_hypo_tt" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2021-02-15 23:55:57 +01:00
|
|
|
<TableLayout
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="match_parent"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_height="match_parent"
|
2021-02-15 23:55:57 +01:00
|
|
|
android:paddingEnd="5dp">
|
2021-02-13 21:45:14 +01:00
|
|
|
|
2021-02-15 23:55:57 +01:00
|
|
|
<TableRow
|
|
|
|
android:layout_width="match_parent"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical">
|
2021-02-15 23:55:57 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
2021-02-15 23:55:57 +01:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:width="120dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:text="@string/time_offset"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
2021-02-15 23:55:57 +01:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2021-02-16 19:03:38 +01:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:src="@drawable/ic_access_alarm_24dp" />
|
|
|
|
|
2021-02-15 23:55:57 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/alarmCheckBox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:checked="false"
|
|
|
|
android:padding="2dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<info.nightscout.androidaps.utils.ui.MinutesNumberPicker
|
|
|
|
android:id="@+id/time"
|
|
|
|
android:layout_width="130dp"
|
|
|
|
android:layout_height="40dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="start"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="@string/unit_minute_short"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow
|
|
|
|
android:layout_width="match_parent"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical">
|
2021-02-15 23:55:57 +01:00
|
|
|
|
2021-02-28 23:20:37 +01:00
|
|
|
<TextView
|
2021-02-15 23:55:57 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:width="120dp"
|
|
|
|
android:text="@string/careportal_newnstreatment_duration_label"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<info.nightscout.androidaps.utils.ui.NumberPicker
|
|
|
|
android:id="@+id/duration"
|
|
|
|
android:layout_width="130dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
<TextView
|
2021-02-15 23:55:57 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="start"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="@string/shorthour"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2021-02-15 23:55:57 +01:00
|
|
|
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow
|
|
|
|
android:layout_width="match_parent"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical">
|
2021-02-15 23:55:57 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-28 23:20:37 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:padding="10dp"
|
2021-02-15 23:55:57 +01:00
|
|
|
android:width="120dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:text="@string/treatments_wizard_carbs_label"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<info.nightscout.androidaps.utils.ui.NumberPicker
|
|
|
|
android:id="@+id/carbs"
|
|
|
|
android:layout_width="130dp"
|
|
|
|
android:layout_height="40dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="start"
|
|
|
|
android:minWidth="45dp"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="@string/shortgramm"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-12-20 18:55:54 +01:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
<Button
|
2021-01-21 17:03:05 +01:00
|
|
|
android:id="@+id/plus1"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="+5" />
|
|
|
|
|
|
|
|
<Button
|
2021-01-21 17:03:05 +01:00
|
|
|
android:id="@+id/plus2"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="+10" />
|
|
|
|
|
|
|
|
<Button
|
2021-01-21 17:03:05 +01:00
|
|
|
android:id="@+id/plus3"
|
2019-12-20 13:58:51 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="+20" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2021-01-21 17:03:05 +01:00
|
|
|
<include
|
|
|
|
android:id="@+id/notes_layout"
|
|
|
|
layout="@layout/notes" />
|
2019-12-20 13:58:51 +01:00
|
|
|
|
2021-01-21 17:03:05 +01:00
|
|
|
<include
|
|
|
|
android:id="@+id/datetime"
|
|
|
|
layout="@layout/datetime" />
|
2020-01-02 00:40:03 +01:00
|
|
|
|
2021-01-21 17:03:05 +01:00
|
|
|
<include
|
|
|
|
android:id="@+id/okcancel"
|
|
|
|
layout="@layout/okcancel" />
|
2019-12-20 13:58:51 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|