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

51 lines
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"
android:layout_width="match_parent"
android:layout_height="match_parent"
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"
android:padding="10dp"
android:text="@string/overview_calibration_bg_label"
android:textAppearance="?android:attr/textAppearanceLarge" />
<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" />
<info.nightscout.utils.NumberPicker
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>