63 lines
2.2 KiB
XML
63 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<ListView
|
|
android:id="@+id/listServers"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="260dp"
|
|
android:choiceMode="singleChoice" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="12dp">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnAdd"
|
|
style="@style/Widget.Material3.Button.TonalButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/add_server"
|
|
android:maxLines="1"
|
|
android:ellipsize="end" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnEdit"
|
|
style="@style/Widget.Material3.Button.TonalButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="10dp"
|
|
android:text="@string/edit_server"
|
|
android:maxLines="1"
|
|
android:ellipsize="end" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnRemove"
|
|
style="@style/Widget.Material3.Button.TonalButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="10dp"
|
|
android:text="@string/remove_server"
|
|
android:maxLines="1"
|
|
android:ellipsize="end" />
|
|
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/btnDiscover"
|
|
style="@style/Widget.Material3.Button.OutlinedButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/scan_lan" />
|
|
|
|
</LinearLayout>
|