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

49 lines
1.8 KiB
XML
Raw Normal View History

2017-04-21 15:36:49 +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"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="info.nightscout.androidaps.plugins.InsulinFastacting.InsulinFastactingFragment">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/insulin_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/insulin_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
<TextView
android:id="@+id/insulin_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
<info.nightscout.androidaps.plugins.InsulinFastacting.ActivityGraph
android:id="@+id/insuling_graph"
2017-04-21 15:36:49 +02:00
android:layout_width="match_parent"
android:layout_margin="20dp"
2017-04-21 18:34:40 +02:00
android:layout_height="200dip" />
2017-04-21 15:36:49 +02:00
</LinearLayout>
</ScrollView>
</FrameLayout>