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-04-07 23:27:18 +02:00
|
|
|
tools:context=".plugins.pump.common.hw.rileylink.dialog.RileyLinkStatusDevice">
|
2018-08-10 17:13:40 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-04-07 23:27:18 +02:00
|
|
|
android:id="@+id/rileyLinkDeviceList"
|
2018-08-10 17:13:40 +02:00
|
|
|
tools:layout_editor_absoluteX="8dp"
|
|
|
|
tools:layout_editor_absoluteY="8dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|