52da1feaf0
Dialog headers (insulin, carbs, prime/fill) now lock proper at least in English and German.
151 lines
5.4 KiB
XML
151 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:focusableInTouchMode="true"
|
|
android:orientation="vertical"
|
|
android:padding="10dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/icon_cp_pump_canula" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:text="@string/primefill"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textColor="@color/colorInsulinButton" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<CheckBox
|
|
android:id="@+id/fill_catheter_change"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/careportal_pumpsitechange" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/fill_cartridge_change"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/careportal_insulincartridgechange" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="2dip"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:background="@color/listdelimiter" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="5dp"
|
|
android:paddingTop="5dp">
|
|
|
|
<TextView
|
|
android:layout_width="60dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:textStyle="bold"
|
|
android:text="@string/overview_insulin_label" />
|
|
|
|
<info.nightscout.utils.NumberPicker
|
|
android:id="@+id/fill_insulinamount"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="end"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/insulin_unit_shortname" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<Button
|
|
android:id="@+id/fill_preset_button1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="0.3U" />
|
|
|
|
<Button
|
|
android:id="@+id/fill_preset_button2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="0.7U" />
|
|
|
|
<Button
|
|
android:id="@+id/fill_preset_button3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="1.2U" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/fill_notes_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="5dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="60dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:width="60dp"
|
|
android:padding="2dp"
|
|
android:text="@string/careportal_newnstreatment_notes_label"
|
|
android:textAppearance="@android:style/TextAppearance.Material.Small"
|
|
android:textStyle="bold" />
|
|
|
|
<EditText
|
|
android:id="@+id/fill_notes"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text|textCapSentences" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/mdtp_done_button" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</ScrollView>
|