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

57 lines
2.2 KiB
XML
Raw Normal View History

2017-02-10 16:53:39 +01:00
<?xml version="1.0" encoding="utf-8"?>
2017-04-30 20:54:35 +02:00
<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"
2017-02-10 16:53:39 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2017-08-31 22:00:45 +02:00
tools:context="info.nightscout.androidaps.plugins.Overview.Dialogs.CalibrationDialog">
2017-02-10 16:53:39 +01:00
2017-04-30 20:54:35 +02:00
<ScrollView
2017-02-10 16:53:39 +01:00
android:layout_width="match_parent"
2017-04-30 20:54:35 +02:00
android:layout_height="match_parent">
2017-06-29 01:37:58 +02:00
2017-04-30 20:54:35 +02:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-05-13 12:48:30 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2017-04-30 20:54:35 +02:00
android:orientation="vertical"
android:padding="10dp">
2017-02-10 16:53:39 +01:00
2017-06-29 01:37:58 +02:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
2018-05-13 12:48:30 +02:00
android:text="@string/overview_calibration"
android:textColor="@color/colorCalibrationButton"
2017-06-29 01:37:58 +02:00
android:textAppearance="?android:attr/textAppearanceLarge" />
2018-05-13 12:48:30 +02:00
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:src="@drawable/icon_calibration" />
2017-06-29 01:37:58 +02:00
<TextView
android:id="@+id/overview_calibration_units"
android:layout_width="wrap_content"
2017-04-30 20:54:35 +02:00
android:layout_height="wrap_content"
2017-06-29 01:37:58 +02:00
android:layout_gravity="center_horizontal"
android:layout_marginBottom="10dp"
android:textAppearance="?android:attr/textAppearanceSmall" />
2019-02-26 20:38:27 +01:00
<info.nightscout.androidaps.utils.NumberPicker
2017-06-29 01:37:58 +02:00
android:id="@+id/overview_calibration_bg"
android:layout_width="130dp"
android:layout_height="40dp"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="20dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp" />
<include layout="@layout/mdtp_done_button" />
2017-04-30 20:54:35 +02:00
</LinearLayout>
2017-06-29 01:37:58 +02:00
2017-04-30 20:54:35 +02:00
</ScrollView>
2017-06-29 01:37:58 +02:00
2017-04-30 20:54:35 +02:00
</FrameLayout>