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

71 lines
2.7 KiB
XML
Raw Normal View History

2017-05-11 18:54:50 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2017-05-22 22:10:56 +02:00
tools:context=".plugins.TreatmentsFromHistory.fragments.TreatmentsBolusFragment">
2017-05-11 18:54:50 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="10dp"
android:paddingTop="10dp">
<TextView
android:id="@+id/treatments_iobtotal_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:text="@string/treatments_iobtotal_label_string"
2017-05-22 22:10:56 +02:00
android:textAppearance="?android:attr/textAppearanceSmall" />
2017-05-11 18:54:50 +02:00
<TextView
android:id="@+id/treatments_iobtotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
2017-05-22 22:10:56 +02:00
android:textAppearance="?android:attr/textAppearanceSmall"
android:textStyle="bold" />
2017-05-11 18:54:50 +02:00
<TextView
android:id="@+id/treatments_iobactivitytotal_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:text="@string/treatments_iobactivitytotal_label_string"
2017-05-22 22:10:56 +02:00
android:textAppearance="?android:attr/textAppearanceSmall" />
2017-05-11 18:54:50 +02:00
<TextView
android:id="@+id/treatments_iobactivitytotal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
2017-05-22 22:10:56 +02:00
android:textAppearance="?android:attr/textAppearanceSmall"
android:textStyle="bold" />
2017-05-11 18:54:50 +02:00
</LinearLayout>
<Button
android:id="@+id/treatments_reshreshfromnightscout"
style="?android:attr/buttonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/nav_refreshtreatments" />
<android.support.v7.widget.RecyclerView
android:id="@+id/treatments_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
</FrameLayout>