146 lines
5.3 KiB
XML
146 lines
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
style="@style/StyleDialog"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:focusableInTouchMode="true"
|
|
tools:context=".dialogs.FillDialog">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
style="@style/StyleDialogHeader"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:importantForAccessibility="no"
|
|
app:srcCompat="@drawable/ic_cp_pump_canula" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_gravity="center"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:text="@string/primefill"
|
|
android:textAlignment="center"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/spacer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="5dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="5dp">
|
|
|
|
<CheckBox
|
|
android:id="@+id/fill_catheter_change"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/careportal_pumpsitechange" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/fill_cartridge_change"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/careportal_insulincartridgechange" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/fill_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:width="120dp"
|
|
android:padding="10dp"
|
|
android:text="@string/overview_insulin_label"
|
|
android:textStyle="bold" />
|
|
|
|
<info.nightscout.androidaps.utils.ui.NumberPicker
|
|
android:id="@+id/fill_insulinamount"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="end"
|
|
android:paddingStart="5dp"
|
|
android:paddingEnd="5dp"
|
|
app:customContentDescription="@string/overview_insulin_label" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/insulin_unit_shortname" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/fill_preset_button1"
|
|
style="@style/GrayButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="0.3U" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/fill_preset_button2"
|
|
style="@style/GrayButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="0.7U" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/fill_preset_button3"
|
|
style="@style/GrayButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="1.2U" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include
|
|
android:id="@+id/notes_layout"
|
|
layout="@layout/notes" />
|
|
|
|
<include
|
|
android:id="@+id/datetime"
|
|
layout="@layout/datetime" />
|
|
|
|
<include
|
|
android:id="@+id/okcancel"
|
|
layout="@layout/okcancel" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|