android:text="解密后的明文:"
android:textColor="@color/black" />
<TextView
android:id="@+id/tv_decryptContent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp" />
</LinearLayout>
</ScrollView>
</LinearLayout>
(2)客户端布局 function_socket_client.xml
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?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">
<RelativeLayout style="@style/ToolBar">
<TextView
style="@style/ToolBar_tv_Title"
android:text="网络加密-客户端" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="服务器地址:" />
<EditText
android:id="@+id/edtTxt_serverAddress"
android:layout_width="match_parent"
android:text="192.168.43.1"
android:layout_height="wrap_content"
android:singleLine="true" />
</
推荐阅读
- android用什么开发 android用什么开发工具
- miui10基于安卓几 miui10是基于安卓几
- 巧用Gmail邮箱备份你的Blog
- 像MyIE一样拥有多窗口
- 基于IE内核的新浏览器AOL Browser
- Android首款机型HTC G1的设计缺陷个人见解及Android机型展望
- 为什么微信版本更新总是iOS版比Android版快?
- Android 设备刷机通用指南 安卓手机怎么刷机用电脑
- Sleipnir 基于IE内核的绿色多页面浏览器
- 像MyIE一样 IE也玩多窗口
