71 lines
2.7 KiB
XML
71 lines
2.7 KiB
XML
<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"
|
|
tools:context=".plugins.Treatments.fragments.TreatmentsBolusFragment">
|
|
|
|
<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"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/treatments_iobtotal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textStyle="bold" />
|
|
|
|
<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"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/treatments_iobactivitytotal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textStyle="bold" />
|
|
|
|
</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>
|