2017-06-02 23:25:11 +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.TreatmentsProfileSwitchFragment">
|
2017-06-02 23:25:11 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/profileswitch_refreshfromnightscout"
|
|
|
|
style="?android:attr/buttonStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:text="@string/refresheventsfromnightscout" />
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-06-02 23:25:11 +02:00
|
|
|
android:id="@+id/profileswitch_recyclerview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
2017-06-02 23:25:11 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|