61 lines
1.9 KiB
XML
61 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:orientation="vertical"
|
||
android:padding="16dp"
|
||
android:background="#FFFFFF">
|
||
|
||
<!-- 标题 -->
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="设置服务器地址"
|
||
android:textSize="16sp"
|
||
android:textColor="#212121"
|
||
android:textStyle="bold"
|
||
android:layout_marginBottom="16dp"/>
|
||
|
||
<!-- 地址输入框 -->
|
||
<EditText
|
||
android:id="@+id/et_host_input"
|
||
android:layout_width="300dp"
|
||
android:layout_height="wrap_content"
|
||
android:hint="请输入服务器地址(如http://localhost:8080)"
|
||
android:textSize="14sp"
|
||
android:inputType="textUri"
|
||
android:padding="8dp"
|
||
android:background="@android:drawable/edit_text"
|
||
android:layout_marginBottom="16dp"/>
|
||
|
||
<!-- 按钮容器 -->
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:orientation="horizontal"
|
||
android:gravity="end">
|
||
|
||
<!-- 取消按钮 -->
|
||
<Button
|
||
android:id="@+id/btn_cancel"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="取消"
|
||
android:textSize="14sp"
|
||
android:layout_marginRight="8dp"/>
|
||
|
||
<!-- 确认按钮 -->
|
||
<Button
|
||
android:id="@+id/btn_confirm"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="确认"
|
||
android:textSize="14sp"
|
||
android:backgroundTint="#2196F3"
|
||
android:textColor="#FFFFFF"/>
|
||
|
||
</LinearLayout>
|
||
|
||
</LinearLayout>
|
||
|