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

42 lines
1.5 KiB
XML
Raw Normal View History

2021-02-02 21:11:40 +01:00
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
2017-04-21 15:36:49 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-02-28 23:16:50 +01:00
tools:context="info.nightscout.androidaps.plugins.insulin.InsulinFragment">
2017-04-21 15:36:49 +02:00
2021-02-02 21:11:40 +01:00
<LinearLayout
2017-04-21 15:36:49 +02:00
android:layout_width="match_parent"
2021-02-02 21:11:40 +01:00
android:layout_height="wrap_content"
android:orientation="vertical">
2017-04-21 15:36:49 +02:00
2021-02-02 21:11:40 +01:00
<TextView
android:id="@+id/name"
2017-04-21 15:36:49 +02:00
android:layout_width="match_parent"
2021-02-02 21:11:40 +01:00
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:textAppearance="?android:attr/textAppearanceLarge" />
2017-04-21 15:36:49 +02:00
2021-02-02 21:11:40 +01:00
<TextView
android:id="@+id/comment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:textAppearance="?android:attr/textAppearanceMedium" />
2017-04-21 16:13:53 +02:00
2021-02-02 21:11:40 +01:00
<TextView
android:id="@+id/dia"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:textAppearance="?android:attr/textAppearanceMedium" />
2017-04-21 18:34:40 +02:00
2021-02-02 21:11:40 +01:00
<info.nightscout.androidaps.plugins.insulin.ActivityGraph
android:id="@+id/graph"
android:layout_width="match_parent"
android:layout_height="200dip"
android:layout_margin="20dp" />
2017-04-21 15:36:49 +02:00
2021-02-02 21:11:40 +01:00
</LinearLayout>
2017-04-21 15:36:49 +02:00
2021-02-02 21:11:40 +01:00
</ScrollView>