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

123 lines
4.7 KiB
XML
Raw Normal View History

2018-02-15 21:00:09 +01:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="info.nightscout.androidaps.plugins.Overview.Dialogs.NewCarbsDialog">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusableInTouchMode="true"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/carbs"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/colorCarbsButton" />
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:src="@drawable/icon_cp_bolus_carbs" />
<CheckBox
android:id="@+id/newcarbs_activity_tt"
2018-03-04 19:56:34 +01:00
android:layout_width="wrap_content"
2018-02-15 21:00:09 +01:00
android:layout_height="match_parent"
android:layout_marginTop="5dp"
2018-03-10 19:22:31 +01:00
android:text="@string/start_activity_tt" />
2018-02-15 21:00:09 +01:00
2018-03-01 15:22:05 +01:00
<CheckBox
android:id="@+id/carbs_eating_soon_tt"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-03-10 19:22:31 +01:00
android:text="@string/start_eating_soon_tt" />
2018-02-15 21:00:09 +01:00
<CheckBox
android:id="@+id/newcarbs_suspend_loop"
2018-03-04 19:56:34 +01:00
android:layout_width="wrap_content"
2018-02-15 21:00:09 +01:00
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
2018-03-10 19:22:31 +01:00
android:text="@string/suspendloopfor30min" />
2018-02-15 21:00:09 +01:00
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-03-10 19:22:31 +01:00
android:layout_gravity="center_horizontal"
android:padding="5dp">
2018-02-15 21:00:09 +01:00
<TextView
android:id="@+id/newcarbs_eventdate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:padding="5dp"
android:text="2017/05/05" />
<TextView
android:id="@+id/newcarb_eventtime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:padding="5dp"
android:text="08:20pm" />
</LinearLayout>
<info.nightscout.utils.NumberPicker
android:id="@+id/newcarb_carbsamount"
android:layout_width="130dp"
android:layout_height="40dp"
android:layout_gravity="end"
android:layout_marginBottom="10dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginTop="10dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-03-10 19:22:31 +01:00
android:layout_marginBottom="5dp"
android:orientation="horizontal">
2018-02-15 21:00:09 +01:00
<Button
android:id="@+id/newcarbs_plus1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="+5" />
<Button
android:id="@+id/newcarbs_plus2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="+10" />
<Button
android:id="@+id/newcarbs_plus3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="+20" />
</LinearLayout>
<include layout="@layout/mdtp_done_button" />
</LinearLayout>
</ScrollView>
2018-03-04 19:56:34 +01:00
</FrameLayout>