28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
tools:context=".plugins.pump.common.hw.rileylink.dialog.RileyLinkStatusHistory">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/rileylink_historystatus"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="10px"
|
|
android:layout_below="@id/medtronic_historytop"
|
|
android:layout_gravity="center_horizontal"
|
|
android:gravity="center_horizontal" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rileylink_history_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_below="@+id/rileylink_historystatus" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |