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

21 lines
762 B
XML
Raw Normal View History

<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.TreatmentsExtendedBolusesFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2019-05-16 13:57:37 +02:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/extendedboluses_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent">
2019-05-16 13:57:37 +02:00
</androidx.recyclerview.widget.RecyclerView>
</LinearLayout>
</FrameLayout>