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

45 lines
1.6 KiB
XML
Raw Normal View History

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"
tools:context="info.nightscout.androidaps.plugins.TempBasals.TempBasalsFragment">
<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"
2016-06-06 10:42:46 +02:00
android:textStyle="bold" />
<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"
android:textAppearance="?android:attr/textAppearanceMedium" />
2016-06-06 10:42:46 +02:00
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/tempbasals_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
</FrameLayout>