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

23 lines
952 B
XML
Raw Normal View History

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-06-02 23:25:11 +02:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
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
2021-02-03 22:40:13 +01:00
<info.nightscout.androidaps.utils.ui.SingleClickButton
android:id="@+id/refresh_from_nightscout"
style="?android:attr/buttonStyle"
2021-02-03 22:40:13 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
2021-02-03 22:40:13 +01:00
android:drawableStart="@drawable/ic_refresh"
android:text="@string/refresheventsfromnightscout" />
2017-06-02 23:25:11 +02:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
2021-02-03 22:40:13 +01:00
android:layout_height="match_parent" />
2017-06-02 23:25:11 +02:00
</LinearLayout>