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

44 lines
1.5 KiB
XML
Raw Normal View History

2016-06-05 14:53:03 +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=".plugins.Treatments.TreatmentsFragment">
2017-05-16 17:48:58 +02:00
<LinearLayout
2017-05-11 18:54:50 +02:00
android:layout_width="match_parent"
2017-05-16 17:48:58 +02:00
android:layout_height="match_parent"
android:orientation="vertical">
2017-05-16 17:48:58 +02:00
<LinearLayout
2016-06-05 14:53:03 +02:00
android:layout_width="match_parent"
2017-05-16 17:48:58 +02:00
android:layout_height="wrap_content"
android:orientation="horizontal">
2016-06-05 14:53:03 +02:00
2017-05-16 17:48:58 +02:00
<TextView
android:id="@+id/treatments_treatments"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal"
android:text="@string/treatments" />
2016-07-11 17:49:09 +02:00
2017-05-16 17:48:58 +02:00
<TextView
android:id="@+id/treatments_tempbasals"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal"
android:text="@string/tempbasals" />
</LinearLayout>
<FrameLayout
android:id="@+id/treatments_fragment_container"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
2016-06-05 14:53:03 +02:00
</FrameLayout>