2019-12-20 11:43:21 +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 11:43:21 +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.TempBasalDialog">
|
2019-12-20 11:43:21 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-20 18:55:54 +01:00
|
|
|
android:orientation="vertical">
|
2019-12-20 11:43:21 +01:00
|
|
|
|
2019-12-20 18:55:54 +01:00
|
|
|
<RelativeLayout
|
2019-12-20 11:43:21 +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 11:43:21 +01:00
|
|
|
android:orientation="horizontal"
|
2019-12-20 18:55:54 +01:00
|
|
|
android:padding="5dp">
|
2019-12-20 11:43:21 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-11 16:58:59 +02:00
|
|
|
android:contentDescription="@string/tempbasal_label"
|
2020-10-19 19:24:33 +02:00
|
|
|
app:srcCompat="@drawable/ic_cp_basal_start" />
|
2019-12-20 11:43:21 +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 11:43:21 +01:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
2020-05-11 16:58:59 +02:00
|
|
|
android:text="@string/tempbasal_label"
|
2019-12-20 11:43:21 +01:00
|
|
|
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 11:43:21 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/actions_tempbasal_percent_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:width="120dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:text="@string/basal_rate"
|
2020-10-19 19:24:33 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
2019-12-20 11:43:21 +01:00
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2020-07-27 21:11:57 +02:00
|
|
|
<info.nightscout.androidaps.utils.ui.NumberPicker
|
2019-12-20 11:43:21 +01:00
|
|
|
android:id="@+id/actions_tempbasal_basalpercentinput"
|
|
|
|
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:minWidth="45dp"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="%"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/actions_tempbasal_absolute_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:width="120dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:text="@string/basal_rate"
|
2020-10-19 19:24:33 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
2019-12-20 11:43:21 +01:00
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2020-07-27 21:11:57 +02:00
|
|
|
<info.nightscout.androidaps.utils.ui.NumberPicker
|
2019-12-20 11:43:21 +01:00
|
|
|
android:id="@+id/actions_tempbasal_basalabsoluteinput"
|
|
|
|
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:minWidth="45dp"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="@string/profile_ins_units_per_hour"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:width="120dp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:text="@string/careportal_newnstreatment_duration_label"
|
2020-10-19 19:24:33 +02:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
2019-12-20 11:43:21 +01:00
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2020-07-27 21:11:57 +02:00
|
|
|
<info.nightscout.androidaps.utils.ui.MinutesNumberPicker
|
2019-12-20 11:43:21 +01:00
|
|
|
android:id="@+id/actions_tempbasal_duration"
|
|
|
|
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:minWidth="45dp"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:text="@string/unit_minute_short"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/okcancel" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|