<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="550dp"
|
android:layout_height="240dp"
|
android:orientation="vertical"
|
android:background="#5893DF"
|
>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:gravity="center"
|
android:text="服务器信息配置"
|
android:textSize="18sp" />
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="2dp"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginTop="10dp"
|
android:background="#F5F5F5" />
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:layout_marginBottom="10dp"
|
>
|
<EditText
|
android:id="@+id/et_server_ip"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginTop="10dp"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:hint="请输入服务器IP"
|
android:inputType="textUri" />
|
<EditText
|
android:id="@+id/et_server_port"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@+id/et_server_ip"
|
android:layout_centerHorizontal="true"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginTop="10dp"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:hint="请输入端口号"
|
android:inputType="number" />
|
</RelativeLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="5dp"
|
android:orientation="horizontal">
|
<Button
|
android:id="@+id/btn_cancel"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:background="@null"
|
|
android:text="取消"
|
android:textColor="#1965db"
|
android:textSize="16sp" />
|
<Button
|
android:id="@+id/btn_confirrm"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:background="@null"
|
android:text="确定"
|
android:textColor="#1965db"
|
android:textSize="16sp" />
|
</LinearLayout>
|
</LinearLayout>
|