112 lines
4.0 KiB
XML
112 lines
4.0 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<ScrollView
|
|
android:id="@+id/form"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="发送" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/send_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dp"
|
|
android:background="#dfdddd" />
|
|
|
|
<TextView
|
|
android:id="@+id/receiveTv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginTop="10dp"
|
|
android:text="接收" />
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rece_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dp"
|
|
android:background="#dfdddd" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAllCaps="false"
|
|
android:layout_marginTop="5dp"
|
|
tools:text="当前网络ip是192.168.0.1"
|
|
android:textStyle="bold"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/startServer"
|
|
style="?android:textAppearanceSmall"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="startServer"
|
|
android:textAllCaps="false"
|
|
android:textStyle="bold" />
|
|
|
|
<Button
|
|
android:id="@+id/clear_log"
|
|
style="?android:textAppearanceSmall"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="CLEAR_LOG"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<EditText
|
|
android:id="@+id/send_et"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_weight="1"
|
|
android:gravity="top"
|
|
android:hint="输入要发送的文字"
|
|
android:maxLines="100"
|
|
android:padding="5dp" />
|
|
|
|
<Button
|
|
android:id="@+id/send_btn"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="3"
|
|
android:text="SEND" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</LinearLayout>
|