Android socket 局域网通信
1.客户端ACG(服务端类似)
本来是想仿照手机软件的,没成功,这个app有过渡界面(SplashActivity)还有主界面(HomeActivity),主界面仿照微信的界面滑动功能(左右滑动切换界面)。
1.1.创建程序,编写界面代码(fragment_acg.xml)
界面只需要两个textview(一个显示客户端发出的信息,另一个显示客户端收到服务的发来的信息),一个edittext和一个button。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="60dp">
<LinearLayout
android:id="@+id/lll"
android:padding="10dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/tvv"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android