55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
<EditText
|
|
android:id="@+id/editTextMasterIP"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:hint="@string/master_server_ip"
|
|
android:importantForAutofill="no"
|
|
android:inputType="text"
|
|
android:text="@string/default_ip" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="vertical">
|
|
|
|
<Button
|
|
android:id="@+id/connect_as_player"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/connect_as_player" />
|
|
|
|
<Button
|
|
android:id="@+id/connect_as_op"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/connect_as_op" />
|
|
|
|
<Button
|
|
android:id="@+id/connect_as_mic"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/connect_as_mic" />
|
|
|
|
<Button
|
|
android:id="@+id/connect_as_speaker"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/connect_as_speaker" />
|
|
|
|
<Button
|
|
android:id="@+id/connect_with_qrcode"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/connect_with_qrcode"
|
|
android:enabled="false"/>
|
|
</LinearLayout>
|
|
</RelativeLayout> |