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

46 lines
1.7 KiB
XML
Raw Normal View History

2018-01-22 21:49:01 +01: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.TreatmentsCareportalFragment">
2018-01-22 21:49:01 +01:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2018-06-23 20:28:20 +02:00
<LinearLayout
android:layout_width="match_parent"
2018-09-11 19:29:51 +02:00
android:layout_height="wrap_content"
2018-06-23 20:28:20 +02:00
android:orientation="horizontal">
<Button
android:id="@+id/careportal_refreshfromnightscout"
style="?android:attr/buttonStyle"
android:layout_width="wrap_content"
2018-09-11 19:29:51 +02:00
android:layout_height="match_parent"
2018-06-23 20:28:20 +02:00
android:layout_gravity="center_horizontal"
android:layout_weight="1"
android:text="@string/refresheventsfromnightscout" />
<Button
android:id="@+id/careportal_removeandroidapsstartedevents"
style="?android:attr/buttonStyle"
android:layout_width="wrap_content"
2018-09-11 19:29:51 +02:00
android:layout_height="match_parent"
2018-06-23 20:28:20 +02:00
android:layout_gravity="center_horizontal"
android:layout_weight="1"
android:text="@string/careportal_removestartedevents" />
</LinearLayout>
2018-01-22 21:49:01 +01:00
<android.support.v7.widget.RecyclerView
android:id="@+id/careportal_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
</FrameLayout>