2019-07-05 17:04:54 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-10 17:13:40 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-03-02 21:39:14 +01:00
|
|
|
tools:context=".plugins.pump.common.hw.rileylink.dialog.RileyLinkStatusHistory">
|
2018-08-10 17:13:40 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-02-07 23:41:05 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/rileylink_historystatus"
|
2018-08-10 17:13:40 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-02-07 23:41:05 +01:00
|
|
|
android:layout_height="10px"
|
|
|
|
android:layout_below="@id/medtronic_historytop"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal" />
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-08-10 17:13:40 +02:00
|
|
|
android:id="@+id/rileylink_history_list"
|
2019-02-07 23:41:05 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_below="@+id/rileylink_historystatus" />
|
|
|
|
|
2018-08-10 17:13:40 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|