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

17 lines
593 B
XML
Raw Normal View History

2021-02-03 15:43:47 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-12-15 01:03:31 +01:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-02-03 15:43:47 +01:00
android:orientation="vertical"
2018-06-08 19:02:20 +02:00
android:paddingTop="2dp"
2019-02-28 23:16:50 +01:00
tools:context="info.nightscout.androidaps.plugins.source.BGSourceFragment">
2017-12-15 01:03:31 +01:00
2021-02-03 15:43:47 +01:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
2017-12-15 01:03:31 +01:00
android:layout_width="match_parent"
2021-02-03 15:43:47 +01:00
android:layout_height="match_parent">
2017-12-15 01:03:31 +01:00
2021-02-03 15:43:47 +01:00
</androidx.recyclerview.widget.RecyclerView>
2017-12-15 01:03:31 +01:00
2021-02-03 15:43:47 +01:00
</LinearLayout>