Android实战-智慧城市(4)

上回说到,Android实战-智慧城市(3)

软件设计

个人中心

    这一页没啥技术含量

关闭HomeActivity

    当点击”退出登录“按钮时关闭HomeAvtivity,并不是说什么时候都关闭HomeActivity
    在HomeActivity.java的类中声明类变量

1
public static HomeActivity homeActivity;

    在HomeActivity的init方法中给homeActivity变量赋值

1
homeActivity = HomeActivity.this;

用户信息的反序列化对象类

    GetInfoBean中的类全部都实现了Serializable接口,因为等下要把它传递给资料修改页
    GetInfoBean.java

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package com.SmartCity.UserInfo;

import java.io.Serializable;

public class GetInfoBean implements Serializable {

private String msg;
private int code;
private UserBean user;

public String getMsg() {
return msg;
}

public void setMsg(String msg) {
this.msg = msg;
}

public int getCode() {
return code;
}

public void setCode(int code) {
this.code = code;
}

public UserBean getUser() {
return user;
}

public void setUser(UserBean user) {
this.user = user;
}

public static class UserBean implements Serializable {
private int userId;
private String userName;
private String nickName;
private String email;
private String phonenumber;
private String sex;
private String avatar;
private String idCard;
private int balance;
private int score;

public int getUserId() {
return userId;
}

public void setUserId(int userId) {
this.userId = userId;
}

public String getUserName() {
return userName;
}

public void setUserName(String userName) {
this.userName = userName;
}

public String getNickName() {
return nickName;
}

public void setNickName(String nickName) {
this.nickName = nickName;
}

public String getEmail() {
return email;
}

public void setEmail(String email) {
this.email = email;
}

public String getPhonenumber() {
return phonenumber;
}

public void setPhonenumber(String phonenumber) {
this.phonenumber = phonenumber;
}

public String getSex() {
return sex;
}

public void setSex(String sex) {
this.sex = sex;
}

public String getAvatar() {
return avatar;
}

public void setAvatar(String avatar) {
this.avatar = avatar;
}

public String getIdCard() {
return idCard;
}

public void setIdCard(String idCard) {
this.idCard = idCard;
}

public int getBalance() {
return balance;
}

public void setBalance(int balance) {
this.balance = balance;
}

public int getScore() {
return score;
}

public void setScore(int score) {
this.score = score;
}
}
}

界面布局

    抄了QQ资料的布局
    fragment_home3.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center_horizontal"
android:orientation="vertical"
android:background="@color/darker_gray"
xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
android:orientation="horizontal"
android:padding="30dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.cardview.widget.CardView
android:outlineProvider="none"
android:elevation="0dp"
app:cardCornerRadius="34dp"
android:layout_width="68dp"
android:layout_height="68dp">
<ImageView
android:id="@+id/userAvatar"
android:src="@mipmap/avatar"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</androidx.cardview.widget.CardView>
<LinearLayout
android:layout_marginLeft="20dp"
android:gravity="center_vertical"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="68dp">
<TextView
android:text="userName"
android:id="@+id/userName"
android:gravity="center"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"/>
<TextView
android:text="nickName"
android:id="@+id/nickName"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="16sp"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</LinearLayout>

<LinearLayout
android:orientation="vertical"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_height="48dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:text="个人设置"
android:id="@+id/setInfo"
android:textSize="18sp"
android:textColor="@color/black"
android:textStyle="bold"
android:gravity="center_vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"/>
<ImageView
android:src="@mipmap/forword"
android:layout_width="18dp"
android:layout_height="18dp"/>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_height="48dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:text="我的订单"
android:id="@+id/myOrder"
android:textSize="18sp"
android:textColor="@color/black"
android:textStyle="bold"
android:gravity="center_vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"/>
<ImageView
android:src="@mipmap/forword"
android:layout_width="18dp"
android:layout_height="18dp"/>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_height="48dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:text="修改密码"
android:id="@+id/setPwd"
android:textSize="18sp"
android:textColor="@color/black"
android:textStyle="bold"
android:gravity="center_vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"/>
<ImageView
android:src="@mipmap/forword"
android:layout_width="18dp"
android:layout_height="18dp"/>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_height="48dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:text="意见反馈"
android:id="@+id/commitOpinion"
android:textSize="18sp"
android:textColor="@color/black"
android:textStyle="bold"
android:gravity="center_vertical"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"/>
<ImageView
android:src="@mipmap/forword"
android:layout_width="18dp"
android:layout_height="18dp"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<Button
android:text="退出登录"
android:id="@+id/userExit"
android:textSize="18sp"
android:textColor="@color/white"
android:textStyle="bold"
android:background="@drawable/button_style2"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>

程序设计

    这一页还真不难,就是这样跳转那样跳转的
    HomeFragment3.java

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
package com.SmartCity.Home;

import android.annotation.SuppressLint;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;

import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;

import com.SmartCity.MyHttpRequest;
import com.SmartCity.R;
import com.SmartCity.RegisAndLogin.LoginActivity;
import com.SmartCity.SoftData;
import com.SmartCity.UserInfo.GetInfoBean;
import com.SmartCity.UserInfo.SetInfoActivity;
import com.bumptech.glide.Glide;

import java.io.File;

public class HomeFragment3 extends Fragment implements View.OnClickListener {
private static final String TAG = "HomeFragment3";
private View viewRoot;//界面资源
private Handler handler;//线程通信
private GetInfoBean getInfoBean;//获取用户信息的json反序列化对象
protected MyHttpRequest myHttpRequest = new MyHttpRequest();//服务器通信封装
private TextView userName,nickName;//用户账号和用户昵称
private ImageView userAvatar;//用户头像
private TextView setInfo,myOrder,setPwd,commitOpinion;//个人设置、我的订单、修改密码、意见反馈
private Button userExit;//退出登录
private SharedPreferences sharedPreferences;//本地轻量库

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (viewRoot == null){ viewRoot = inflater.inflate(R.layout.fragment_home3, container, false); }

myHanlder();
init();//界面初始化
submit();//添加监听
getInfo();//获取用户信息

return viewRoot;
}

private void myHanlder() {
handler = new Handler(Looper.getMainLooper()){
@Override
public void handleMessage(@NonNull Message msg) {
super.handleMessage(msg);
if (msg.what == 1){
setInfo();//设置用户信息显示
}
}
};
}

// 设置用户信息显示
@SuppressLint("SetTextI18n")
private void setInfo() {
Log.d(TAG, "setInfo: userName:" + getInfoBean.getUser().getUserName() + ",\nnickName:" + getInfoBean.getUser().getNickName() + ",\nuserAvatar:" + getInfoBean.getUser().getAvatar());
userName.setText("用户账号: " + getInfoBean.getUser().getUserName());
nickName.setText("用户昵称: " + getInfoBean.getUser().getNickName());
// 头像上传到官方接口后不可用,所以这里用本地链接代替
File file = new File(getInfoBean.getUser().getAvatar());
if (file.exists()){
// skipMemoryCache(true) .diskCacheStrategy(DiskCacheStrategy.NONE) ;不缓存
Glide.with(getContext()).load(file).skipMemoryCache(true).diskCacheStrategy(DiskCacheStrategy.NONE).into(userAvatar);
}
else {
Log.d(TAG, "setInfo: 本地不存在图片");
}
}

// 界面初始化
private void init() {
userAvatar = viewRoot.findViewById(R.id.userAvatar);
userName = viewRoot.findViewById(R.id.userName);
nickName = viewRoot.findViewById(R.id.nickName);
setInfo = viewRoot.findViewById(R.id.setInfo);
myOrder = viewRoot.findViewById(R.id.myOrder);
setPwd = viewRoot.findViewById(R.id.setPwd);
commitOpinion = viewRoot.findViewById(R.id.commitOpinion);
userExit = viewRoot.findViewById(R.id.userExit);
sharedPreferences = getActivity().getSharedPreferences("SoftData", Context.MODE_PRIVATE);
}

// 设置监听事件
private void submit() {
setInfo.setOnClickListener(this);
myOrder.setOnClickListener(this);
setPwd.setOnClickListener(this);
commitOpinion.setOnClickListener(this);
userExit.setOnClickListener(this);
}

// 获取用户信息
private void getInfo() {
new Thread(){
@Override
public void run() {
super.run();
getInfoBean = (GetInfoBean) myHttpRequest.myHttp("/prod-api/api/common/user/getInfo",null,GetInfoBean.class, SoftData.token,"get");
Message message = Message.obtain();
message.what = 1;
handler.sendMessage(message);
}
}.start();
}

@Override
public void onClick(View v) {
Intent intent = new Intent();
switch (v.getId()){
case R.id.setInfo:
// 携带获取到的资料的反序列化对象跳转到资料修改页
intent.setClass(getContext(), SetInfoActivity.class);
Bundle bundle = new Bundle();
bundle.putSerializable("getInfoBean",getInfoBean);
intent.putExtras(bundle);
startActivityForResult(intent,1);
break;
case R.id.myOrder:
// 我的订单
break;
case R.id.setPwd:
// 修改密码
break;
case R.id.commitOpinion:
// 意见反馈
break;
case R.id.userExit:
// 退出登录,干掉一系列和账号密码有关的东西
SoftData.userName = "noValue";
SoftData.password = "noValue";
SoftData.token = "noValue";
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("userName","noValue");
editor.putString("password","noValue");
editor.commit();
// 跳转到登陆页面
intent.setClass(getContext(), LoginActivity.class);
startActivity(intent);
// 关闭页面
getActivity().finish();
break;
}
}

@Override
public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 1){//如果从信息修改页返回来
getInfo();//刷新用户信息
}
}
}

个人设置

自定义dialog弹窗

    自定义一个弹窗。使其显示从底部弹出的效果,在修改头像时选择相机和相册两种方式

弹窗样式

    布局和普通的页面布局一样
    dialog_avatar_choose.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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/camera"
android:layout_width="match_parent"
android:layout_height="50dp"
android:clickable="true"
android:gravity="center"
android:text="拍摄"
android:background="@color/white"
android:textColor="@android:color/background_dark"
android:textSize="15sp"
android:focusable="true" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray" />
<TextView
android:id="@+id/picture"
android:clickable="true"
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center"
android:background="@color/white"
android:text="从相册选择"
android:textColor="@android:color/background_dark"
android:textSize="15sp"
android:focusable="true" />

<View
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="@android:color/darker_gray" />

<TextView
android:clickable="true"
android:id="@+id/cancel"
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center"
android:background="@color/white"
android:text="取消"
android:textColor="@android:color/background_dark"
android:textSize="15sp"
android:focusable="true" />
</LinearLayout>

弹窗动画

    弹窗的进入动画和退出动画,注意,动画的xml是anim文件
    check_avatar_dialog_in.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<!--
duration:动画执行时间
fromXDelta:X轴开始的位置
fromYDelta:Y轴开始的位置
toXDelta:X轴结束的位置
toYDelta:Y轴结束的位置
-->
<translate
android:duration="300"
android:fromXDelta="0"
android:fromYDelta="1000"
android:toXDelta="0"
android:toYDelta="0"
/>
</set>

    check_avatar_dialog_out.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<!--
duration:动画执行时间
fromXDelta:X轴开始的位置
fromYDelta:Y轴开始的位置
toXDelta:X轴结束的位置
toYDelta:Y轴结束的位置
-->
<translate
android:duration="300"
android:fromYDelta="0"
android:fromXDelta="0"
android:toYDelta="1000"
android:toXDelta="0"
/>
</set>

修改弹窗布局的样式

    在themes.xml布局文件中添加

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--    dialog的样式-->
<style name="check_avatar_dialog_style" parent="@android:style/Theme.Dialog">
<!-- 边框-->
<item name="android:windowFrame">@null</item>
<!-- 是否浮现在Activity上-->
<item name="android:windowIsFloating">true</item>
<!-- 半透明-->
<item name="android:windowIsTranslucent">true</item>
<!-- 无标题-->
<item name="android:windowNoTitle">true</item>
<item name="android:background">@android:color/transparent</item>
<!-- 背景透明-->
<item name="android:windowBackground">@android:color/transparent</item>
<!-- 模糊-->
<item name="android:backgroundDimEnabled">true</item>
<!-- 遮罩层-->
<item name="android:backgroundDimAmount">0.5</item>
</style>

    设置动画

1
2
3
4
5
6
7
<!--    dialog的动画-->
<style name="check_avatar_dialog_anim">
<!-- 进入-->
<item name="android:windowEnterAnimation">@anim/check_avatar_dialog_in</item>
<!-- 退出-->
<item name="android:windowExitAnimation">@anim/check_avatar_dialog_out</item>
</style>

页面布局

    头像邮箱这啊那的,还是比较麻烦
    activity_set_info.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:gravity="center_horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Title-->
<LinearLayout
android:background="@color/blue"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="58dp">
<LinearLayout
android:onClick="finishActivity"
android:gravity="center"
android:layout_width="58dp"
android:layout_height="58dp">
<ImageView
android:src="@mipmap/back"
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
<LinearLayout
android:gravity="center"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent">
<TextView
android:text="个人设置"
android:textStyle="bold"
android:textSize="18sp"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
android:gravity="center"
android:layout_width="58dp"
android:layout_height="58dp">

</LinearLayout>
</LinearLayout>
<!-- Content-->
<LinearLayout
android:orientation="vertical"
android:background="@color/white"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:gravity="center_vertical|right"
android:onClick="setAvatarClick"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="头像"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<androidx.cardview.widget.CardView
android:outlineProvider="none"
android:elevation="0dp"
app:cardCornerRadius="34dp"
android:layout_marginRight="20dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_width="68dp"
android:layout_height="68dp">
<ImageView
android:id="@+id/userAvatar"
android:src="@mipmap/avatar"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</androidx.cardview.widget.CardView>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:background="@color/white"
android:gravity="center_vertical|right"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="昵称"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<EditText
android:hint="请输入昵称"
android:gravity="right|center_vertical"
android:id="@+id/nickName"
android:lines="1"
android:inputType="text"
android:background="@color/white"
android:layout_width="160dp"
android:layout_marginRight="20dp"
android:layout_height="48dp"
tools:ignore="RtlHardcoded" />
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:background="@color/white"
android:gravity="center_vertical|right"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="性别"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<RadioGroup
android:layout_marginRight="20dp"
android:id="@+id/userSex"
android:gravity="center"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="48dp">
<RadioButton
android:text="男"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RadioButton
android:text="女"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RadioGroup>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:background="@color/white"
android:gravity="center_vertical|right"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="手机号"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<EditText
android:hint="请输入手机号"
android:gravity="right|center_vertical"
android:id="@+id/phoneNumber"
android:lines="1"
android:inputType="number"
android:background="@color/white"
android:layout_width="160dp"
android:layout_marginRight="20dp"
android:layout_height="48dp"
tools:ignore="RtlHardcoded" />
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:background="@color/white"
android:gravity="center_vertical|right"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="身份证号"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<EditText
android:hint="请输入身份证号"
android:gravity="right|center_vertical"
android:id="@+id/userIdNumber"
android:lines="1"
android:inputType="number"
android:background="@color/white"
android:layout_width="160dp"
android:layout_marginRight="20dp"
android:layout_height="48dp"/>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<LinearLayout
android:background="@color/white"
android:gravity="center_vertical|right"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="邮箱"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<EditText
android:hint="请输入邮箱"
android:gravity="right|center_vertical"
android:id="@+id/userEmail"
android:lines="1"
android:inputType="textEmailAddress"
android:background="@color/white"
android:layout_width="160dp"
android:layout_marginRight="20dp"
android:layout_height="48dp"/>
</LinearLayout>
<View
android:background="@color/darker_gray"
android:layout_width="match_parent"
android:layout_height="1dp"/>
<Button
android:text="保存"
android:onClick="saveInfo"
android:textColor="@color/white"
android:textStyle="bold"
android:textSize="18sp"
android:layout_marginRight="20dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="10dp"
android:background="@drawable/button_style2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>

程序设计

    陌生点:自定义dialog弹窗、调用相机和相册选择图片、view转bitmap保存至本地
    SetInfoActivity.java

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
package com.SmartCity.UserInfo;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;

import android.Manifest;
import android.app.Dialog;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.provider.MediaStore;
import android.text.TextUtils;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.view.Window;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
import android.widget.Toast;

import com.SmartCity.Bean;
import com.SmartCity.MyHttpRequest;
import com.SmartCity.R;
import com.SmartCity.SoftData;
import com.bumptech.glide.Glide;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

public class SetInfoActivity extends AppCompatActivity implements View.OnClickListener {
private static final String TAG = "SetInfoActivity";
private GetInfoBean getInfoBean;//获取用户资料的json反序列化对象
private ImageView userAvatar;//用户头像
private RadioGroup userSex;//用户性别
private EditText nickName,phoneNumber,userIdNumber,userEmail;//昵称、手机号、身份证、邮箱
private Dialog dialog;//自定义弹窗
private TextView dialogCamera,dialogPicture,dialogCancel;//相机拍摄、从相册选择、取消
private final int CAREMA = 101;//调用相机回执判断码
private final int PICTURE = 102;//调用相册回执判断码
private final int REQUEST_CAMERA = 201;//相机权限请求码
private Bean bean;//最简单的json反序列化对象
private Handler handler;//线程通信
private MyHttpRequest myHttpRequest = new MyHttpRequest();//封装的服务器通信

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_set_info);
myHandler();
init();//初始化界面
setData();//显示用户信息
}

private void myHandler() {
handler = new Handler(Looper.getMainLooper()){
@Override
public void handleMessage(@NonNull Message msg) {
super.handleMessage(msg);
if (msg.what == 1){
if (bean == null){
MyToast("修改失败: 未知原因");
}
else if (bean.getCode() != 200){
MyToast("修改失败: " + bean.getMsg());
}
else {
MyToast("保存成功");
}
}
}
};
}

// 显示用户信息
private void setData() {
// 加载用户头像
File avatarPath = new File(getInfoBean.getUser().getAvatar());
if (avatarPath.exists()){
// .skipMemoryCache(true).diskCacheStrategy(DiskCacheStrategy.NONE)//不缓存
Glide.with(this).load(avatarPath).skipMemoryCache(true).diskCacheStrategy(DiskCacheStrategy.NONE).into(userAvatar);
}
// 设置用户性别
if (getInfoBean.getUser().getSex().equals("0")){
((RadioButton)userSex.getChildAt(0)).setChecked(true);
}
else {
((RadioButton)userSex.getChildAt(1)).setChecked(true);
}
nickName.setText(getInfoBean.getUser().getNickName());//昵称
phoneNumber.setText(getInfoBean.getUser().getPhonenumber());//手机号
userIdNumber.setText(getInfoBean.getUser().getIdCard());//身份证号
userEmail.setText(getInfoBean.getUser().getEmail());//邮箱
}

// 初始化界面
private void init() {
getInfoBean = (GetInfoBean) getIntent().getExtras().getSerializable("getInfoBean");
userAvatar = findViewById(R.id.userAvatar);
userSex = findViewById(R.id.userSex);
nickName = findViewById(R.id.nickName);
phoneNumber = findViewById(R.id.phoneNumber);
userIdNumber = findViewById(R.id.userIdNumber);
userEmail = findViewById(R.id.userEmail);
}

// 点击保存按钮时
public void saveInfo(View view) {
saveUserAvatar();//保存用户头像到本地
// 开始读取填写的资料并保存
String nickNameContent = nickName.getText().toString();
String sexContent = ((RadioButton)userSex.getChildAt(0)).isChecked() ? "0":"1";
String phoneNumberContent = phoneNumber.getText().toString();
String IdNumberContent = userIdNumber.getText().toString();
String emailContent = userEmail.getText().toString();
String avatarContent = getExternalCacheDir() + "/userInfo/avatar.png";
if (TextUtils.isEmpty(nickNameContent)){
MyToast("昵称不可为空");
}
else if (TextUtils.isEmpty(phoneNumberContent)){
MyToast("手机号不可为空");
}
else if (phoneNumberContent.length() < 11){
MyToast("手机号格式不正确");
}
else if (IdNumberContent.length() < 18){
MyToast("身份证号格式不正确");
}
else {
String json = "{\n" +
"\"avatar\": \"" + avatarContent +"\",\n" +
"\"email\": \"" + emailContent + "\",\n" +
"\"idCard\": \"" + IdNumberContent +"\",\n" +
"\"nickName\": \"" + nickNameContent + "\",\n" +
"\"phonenumber\": \"" + phoneNumberContent + "\",\n" +
"\"sex\": \"" + sexContent + "\"\n" +
"}";
Log.d(TAG, "saveInfo: \n" + json);
sendInfo(json);//发送json数据
}
}

// 发送json数据
private void sendInfo(String json){
new Thread(){
@Override
public void run() {
super.run();
bean = (Bean) myHttpRequest.myHttp("/prod-api/api/common/user",json,Bean.class, SoftData.token,"put");
Message message = Message.obtain();
message.what = 1;
handler.sendMessage(message);
}
}.start();
}

private void saveUserAvatar() {
BitmapDrawable bitmapDrawable = (BitmapDrawable) userAvatar.getDrawable();
Bitmap bitmap = bitmapDrawable.getBitmap();//得到用户头像view的bitmap
if (bitmap != null){
FileOutputStream fileOutputStream = null;
File folder = new File(getExternalCacheDir(),"userInfo");//外部储存私有目录缓存目录下的userInfo文件夹
File file = new File(folder,"avatar.png");//上述目录中的avatar.png文件
try {
// 如果不存在则创建路径中的文件夹
if (!folder.exists()){ folder.mkdirs(); }
// 如果不存在则创建文件
if (!file.exists()){ file.createNewFile(); }
// 输出流实例化
fileOutputStream = new FileOutputStream(file);
// 保存文件的参数
bitmap.compress(Bitmap.CompressFormat.PNG,100,fileOutputStream);
fileOutputStream.flush();//清空io流
} catch (IOException e) {
e.printStackTrace();
} finally {
if (!file.exists()){
Toast.makeText(SetInfoActivity.this,"头像保存失败",Toast.LENGTH_SHORT).show();
}
if (fileOutputStream != null){
try {
fileOutputStream.close();//关闭输出流
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
else {
Toast.makeText(SetInfoActivity.this,"头像保存失败",Toast.LENGTH_SHORT).show();
}
}


// 点击头像修改时,出现弹窗
public void setAvatarClick(View view) {
// 选择在Theme中定义好的dialog样式
dialog = new Dialog(this,R.style.check_avatar_dialog_style);
// 设置dialog的布局文件
dialog.setContentView(View.inflate(this,R.layout.dialog_avatar_choose,null));
// 获取dialog在窗口中的对象
Window window = dialog.getWindow();
// 设置在窗口中的位置
window.setGravity(Gravity.BOTTOM);
// 设置弹出的动画效果
window.setWindowAnimations(R.style.check_avatar_dialog_anim);
// 设置dialog宽高
window.setLayout(-1,-2);
// 显示dialog
dialog.show();
// 设置弹窗中view的事件监听
dialogSubmit();
}

private void dialogSubmit() {
dialogCamera = dialog.findViewById(R.id.camera);
dialogPicture = dialog.findViewById(R.id.picture);
dialogCancel = dialog.findViewById(R.id.cancel);
dialogCamera.setOnClickListener(this);
dialogPicture.setOnClickListener(this);
dialogCancel.setOnClickListener(this);
}

@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.camera:
// 用相机拍摄
chooseCamera();
dialog.dismiss();
break;
case R.id.picture:
// 从相册选择
choosePicture();
dialog.dismiss();
break;
case R.id.cancel:
// 关闭窗口
dialog.dismiss();
break;
}
}

// 从相册选择
private void choosePicture(){
// 说实话这么简单的调用相册选择,我是头一次见,简单且强大
Intent intent = new Intent(Intent.ACTION_PICK,null);
intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,"image/*");
startActivityForResult(intent,PICTURE);
}

// 用相机拍摄
private void chooseCamera(){
// 判断有无权限
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.CAMERA) == PackageManager.PERMISSION_GRANTED){
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent,CAREMA);
}
else {
ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.CAMERA},REQUEST_CAMERA);
}
}

@Override
// 权限申请回调
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if (requestCode == 1){
if (ActivityCompat.checkSelfPermission(this,Manifest.permission.CAMERA) == PackageManager.PERMISSION_GRANTED){
Toast.makeText(this,"权限请求成功",Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(this,"权限请求失败",Toast.LENGTH_SHORT).show();
}
}
}

@Override
// 返回页面回调
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAREMA){
/*
* 这里有个坑,跳转到相机拍摄页面后,
* 如果点击系统提供的"x"号返回,那么data不为空值,可以用getExtra从data中取数据,但是取到的数据是空值
* 如果使用手机物理返回键返回,那data直接是空值,从空值data中get会直接报错
* 所以应该用短路按位与,或者用两个if分别来判断data和data.getExtras()
* data或data.getExtras为空值时,说明没有拍照
*/
if (data != null && data.getExtras() != null){
Bitmap bitmap = (Bitmap) data.getExtras().get("data");
userAvatar.setImageBitmap(bitmap);//设置图片
}
}
// 如果是调用相册选择
else if(requestCode == PICTURE){
if (data != null){
Uri uri = data.getData();
userAvatar.setImageURI(uri);//设置图片
}
}
}

// 关闭页面
public void finishActivity(View view) { finish(); }
// Toast
private void MyToast(String message){
Toast.makeText(this,message,Toast.LENGTH_SHORT).show();
}
}

我的订单

界面布局

    activity_order.xml

1

程序设计

    OrderActivity.java

1

修改密码

    简单的,不做描述

页面布局

    activity_seting_pwd.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Title-->
<LinearLayout
android:background="@color/blue"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="58dp">
<LinearLayout
android:onClick="finishActivity"
android:gravity="center"
android:layout_width="58dp"
android:layout_height="58dp">
<ImageView
android:src="@mipmap/back"
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
<LinearLayout
android:gravity="center"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent">
<TextView
android:text="修改密码"
android:textStyle="bold"
android:textSize="18sp"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
android:gravity="center"
android:layout_width="58dp"
android:layout_height="58dp">

</LinearLayout>
</LinearLayout>
<!-- Content-->
<LinearLayout
android:orientation="vertical"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:background="@drawable/edit_text_style"
android:layout_marginTop="68dp"
android:hint="请输入原始密码"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:lines="1"
android:inputType="textPassword"
android:gravity="center"
android:id="@+id/oldPwd"
android:layout_width="match_parent"
android:layout_height="48dp"/>
<EditText
android:background="@drawable/edit_text_style"
android:layout_marginTop="10dp"
android:hint="请输入新密码"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:lines="1"
android:inputType="textPassword"
android:gravity="center"
android:id="@+id/newPwd"
android:layout_width="match_parent"
android:layout_height="48dp"/>
<EditText
android:background="@drawable/edit_text_style"
android:layout_marginTop="10dp"
android:hint="再次输入新密码"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:lines="1"
android:inputType="textPassword"
android:gravity="center"
android:id="@+id/againNewPwd"
android:layout_width="match_parent"
android:layout_height="48dp"/>
<Button
android:background="@drawable/edit_text_style"
android:text="修改密码"
android:onClick="settingPwd"
android:textColor="@color/black"
android:textSize="18sp"
android:id="@+id/button"
android:layout_marginTop="28dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>

程序设计

    SetingPwdActivity

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.SmartCity.UserInfo;

import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

import com.SmartCity.Bean;
import com.SmartCity.Home.HomeActivity;
import com.SmartCity.MyHttpRequest;
import com.SmartCity.R;
import com.SmartCity.RegisAndLogin.LoginActivity;
import com.SmartCity.SoftData;

public class SetingPwdActivity extends AppCompatActivity {
private EditText oldPwd,newPwd,againNewPwd;//原密码、新密码、再次输入新密码
private Bean bean;//基本json字符串反序列化对象
private MyHttpRequest myHttpRequest = new MyHttpRequest();//服务器通信模块
private Handler handler;//线程通信
private SharedPreferences sharedPreferences;//本地轻量库

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_seting_pwd);
myHandler();//线程通信
init();//初始化界面
}

// 线程通信
private void myHandler() {
handler = new Handler(Looper.getMainLooper()){
@Override
public void handleMessage(@NonNull Message msg) {
super.handleMessage(msg);
if (msg.what == 1){
// 请求结果验证
if (bean == null){
Toast.makeText(SetingPwdActivity.this,"修改失败: 未知原因",Toast.LENGTH_SHORT).show();
}
else if (bean.getCode() != 200){
Toast.makeText(SetingPwdActivity.this,"修改失败: " + bean.getMsg(),Toast.LENGTH_SHORT).show();
}
else {
// 清理本地密码、清理SoftData类中的类变量,结束页面、关闭HomeActivity、跳转到登陆页面
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("password","noValue");
SoftData.password = "noValue";
Toast.makeText(SetingPwdActivity.this,"修改成功",Toast.LENGTH_SHORT).show();
Intent intent = new Intent(SetingPwdActivity.this, LoginActivity.class);
startActivity(intent);
finish();
HomeActivity.homeActivity.finish();
}
}
}
};
}

private void init() {
oldPwd = findViewById(R.id.oldPwd);
newPwd = findViewById(R.id.newPwd);
againNewPwd = findViewById(R.id.againNewPwd);
sharedPreferences = getSharedPreferences("SoftData",MODE_PRIVATE);
}

// 修改密码按钮
public void settingPwd(View view) {
String oldPwdContent = oldPwd.getText().toString();
String newPwdContent = newPwd.getText().toString();
String againNewPwdContent = againNewPwd.getText().toString();
if (TextUtils.isEmpty(oldPwdContent)){
Toast.makeText(this,"初始密码不可为空",Toast.LENGTH_SHORT).show();
}
else if (oldPwdContent.length() < 6){
Toast.makeText(this,"密码不小于位",Toast.LENGTH_SHORT).show();
}
else if (TextUtils.isEmpty(newPwdContent)){
Toast.makeText(this,"请输入新密码",Toast.LENGTH_SHORT).show();
}
else if (newPwdContent.length() < 6){
Toast.makeText(this,"密码不小于6位",Toast.LENGTH_SHORT).show();
}
else if (TextUtils.isEmpty(againNewPwdContent)){
Toast.makeText(this,"请再次输入密码",Toast.LENGTH_SHORT).show();
}
else if (againNewPwdContent.length() < 6){
Toast.makeText(this,"密码不小于6位",Toast.LENGTH_SHORT).show();
}
else if (!againNewPwdContent.equals(newPwdContent)){
Toast.makeText(this,"两次输入的密码不一样",Toast.LENGTH_SHORT).show();
}
else {
String json = "{\n" +
"\"newPassword\": \"" + newPwdContent + "\",\n" +
"\"oldPassword\": \"" + oldPwdContent + "\"\n" +
"}";
new Thread(){
@Override
public void run() {
super.run();
bean = (Bean) myHttpRequest.myHttp("/prod-api/api/common/user/resetPwd",json,Bean.class, SoftData.token,"put");
Message message = Message.obtain();
message.what = 1;
handler.sendMessage(message);
}
}.start();
}
}

// 结束页面
public void finishActivity(View view) { finish(); }
}

意见反馈

    简单的,不做描述

页面布局

    activity_feedback.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
69
70
71
72
73
74
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Title-->
<LinearLayout
android:background="@color/blue"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="58dp">
<LinearLayout
android:onClick="finishActivity"
android:gravity="center"
android:layout_width="58dp"
android:layout_height="58dp">
<ImageView
android:src="@mipmap/back"
android:layout_width="20dp"
android:layout_height="20dp"/>
</LinearLayout>
<LinearLayout
android:gravity="center"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent">
<TextView
android:text="意见反馈"
android:textStyle="bold"
android:textSize="18sp"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<LinearLayout
android:gravity="center"
android:layout_width="58dp"
android:layout_height="58dp">

</LinearLayout>
</LinearLayout>
<!-- Content-->
<LinearLayout
android:orientation="vertical"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:background="@drawable/edit_text_style"
android:layout_marginTop="10dp"
android:maxLength="150"
android:hint="请输入反馈内容(不超过150字)"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:gravity="top"
android:id="@+id/editText"
android:padding="8dp"
android:layout_width="match_parent"
android:minHeight="148dp"
android:layout_height="wrap_content"/>
<Button
android:background="@drawable/edit_text_style"
android:text="提交反馈"
android:textColor="@color/black"
android:onClick="commit"
android:textSize="18sp"
android:layout_marginTop="28dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>

程序设计

    FeedbackActivity.java

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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.SmartCity.UserInfo;

import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

import com.SmartCity.Bean;
import com.SmartCity.MyHttpRequest;
import com.SmartCity.R;
import com.SmartCity.SoftData;

public class FeedbackActivity extends AppCompatActivity {
private EditText editText;//反馈意见输入框
private Bean bean;//基础json反序列化对象
private MyHttpRequest myHttpRequest = new MyHttpRequest();//封装的服务器通信模块
private Handler handler;//线程通信

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_feedback);
myHandler();//线程通信
init();//初始化界面
}

// 线程通信
private void myHandler() {
handler = new Handler(Looper.getMainLooper()){
@Override
public void handleMessage(@NonNull Message msg) {
super.handleMessage(msg);
if (msg.what == 1){
// 请求结果判断
if (bean == null){
Toast.makeText(FeedbackActivity.this,"提交失败: 未知原因",Toast.LENGTH_SHORT).show();
}
else if (bean.getCode() != 200){
Toast.makeText(FeedbackActivity.this,"提交失败: " + bean.getMsg(),Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(FeedbackActivity.this,"提交成功",Toast.LENGTH_SHORT).show();
editText.setText("");//清空编辑框
}
}
}
};
}

// 初始化界面
private void init() {
editText = findViewById(R.id.editText);
}

// 点击提交反馈意见按钮
public void commit(View view) {
String editTextContent = editText.getText().toString();
if (TextUtils.isEmpty(editTextContent)){
Toast.makeText(this,"反馈的内容不可为空",Toast.LENGTH_SHORT).show();
}
else {
String json = "{\n" +
"\"content\": \"" + editTextContent + "\",\n" +
"\"title\": \"发现错误\"\n" +
"}";
new Thread(){
@Override
public void run() {
super.run();
bean = (Bean) myHttpRequest.myHttp("/prod-api/api/common/feedback",json,Bean.class, SoftData.token,"post");
Message message = Message.obtain();
message.what = 1;
handler.sendMessage(message);
}
}.start();
}
}

// 结束页面
public void finishActivity(View view) { finish(); }
}

下一节,“全部服务页”和“新闻页”开发,Android实战-智慧城市(5)