23 lines
719 B
XML
23 lines
719 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/device_list_id"
|
||
|
android:paddingLeft="32dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/rileylink_device_name"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="24dp"
|
||
|
|
||
|
android:text="name" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/rileylink_device_address"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="12dp" />
|
||
|
|
||
|
</LinearLayout>
|