<?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="match_parent"
|
android:orientation="vertical"
|
android:padding="10dp"
|
android:gravity="center_horizontal"
|
>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@android:color/black"
|
android:text="服务器地址:"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="15dp"
|
android:text="IP:"/>
|
<EditText
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="192.168.23.12"
|
android:background="@android:drawable/editbox_background_normal"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="10dp"
|
android:text="Port:"/>
|
<EditText
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="8080"
|
android:background="@android:drawable/editbox_background_normal"/>
|
</LinearLayout>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginTop="10dp"
|
android:layout_marginBottom="10dp"
|
android:background="@color/colorAccent"
|
/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@android:color/black"
|
android:text="登录信息:"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="15dp"
|
android:text="用户名:"/>
|
<EditText
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="GpsExam"
|
android:background="@android:drawable/editbox_background_normal"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="10dp"
|
android:text="密码:"/>
|
<EditText
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="192.168.23.12"
|
android:inputType="textPassword"
|
android:background="@android:drawable/editbox_background_normal"/>
|
</LinearLayout>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginTop="10dp"
|
android:layout_marginBottom="10dp"
|
android:background="@color/colorAccent"
|
/>
|
<Button
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="保存"/>
|
</LinearLayout>
|