2016-06-06 10:42:46 +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"
|
2019-02-28 23:16:50 +01:00
|
|
|
tools:context="info.nightscout.androidaps.plugins.treatments.fragments.TreatmentsTemporaryBasalsFragment">
|
2016-06-06 10:42:46 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2016-07-11 17:49:09 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2016-06-06 10:42:46 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-07-11 17:49:09 +02:00
|
|
|
android:orientation="horizontal"
|
2016-06-06 10:42:46 +02:00
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingTop="10dp">
|
|
|
|
|
|
|
|
<TextView
|
2016-07-11 17:49:09 +02:00
|
|
|
android:id="@+id/tempbasals_iobtotal_label"
|
2016-06-06 10:42:46 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="10dp"
|
2016-07-11 17:49:09 +02:00
|
|
|
android:text="@string/tempbasals_iobtotal_label_string"
|
2017-05-22 20:58:05 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2016-06-06 10:42:46 +02:00
|
|
|
|
|
|
|
<TextView
|
2016-07-11 17:49:09 +02:00
|
|
|
android:id="@+id/tempbasals_totaltempiob"
|
2016-06-06 10:42:46 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-07-11 17:49:09 +02:00
|
|
|
android:paddingLeft="10dp"
|
2017-05-22 20:58:05 +02:00
|
|
|
android:textStyle="bold"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2016-06-06 10:42:46 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2016-06-06 10:42:46 +02:00
|
|
|
android:id="@+id/tempbasals_recyclerview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
2016-06-06 10:42:46 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|