36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<data>
|
|
<import type="android.view.View"/>
|
|
<variable
|
|
name="device"
|
|
type="android.net.wifi.p2p.WifiP2pDevice"/>
|
|
<variable
|
|
name="ipAddress"
|
|
type="String"/>
|
|
</data>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{device.deviceAddress}"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
android:textIsSelectable="true"
|
|
tools:text="xx:xx:xx:xx:xx:xx"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="@{ipAddress == null ? View.GONE : View.VISIBLE}"
|
|
android:text="@{ipAddress}"
|
|
android:textIsSelectable="true"
|
|
tools:text="192.168.49.123"/>
|
|
</LinearLayout>
|
|
</layout>
|