本文开始逐步实现设置中心的“手机防盗”功能模块
点击“手机防盗”,如果之前没有设置过密码,则弹出下面的对话框:
如果已经设置过密码,则弹出下面的对话框:
由于需要存储保存的密码状态,可以使用SharedPreferences
在之前创建的SpUtil类中添加下面的代码:
Java代码
-
-
-
-
-
-
-
- public static void putString(Context context, String key, String value) {
-
- if (sp == null) {
- sp = context.getSharedPreferences("config", context.MODE_PRIVATE);
- }
- sp.edit().putString(key, value).commit();
- }
-
-
-
-
-
-
-
-
- public static String getString(Context context, String key, String defValue) {
-
- if (sp == null) {
- sp = context.getSharedPreferences("config", context.MODE_PRIVATE);
- }
- return sp.getString(key, defValue);
- }
这样,当鼠标点击的时候通过监听点击事件,加入判断逻辑
Java代码
- private void showDialog() {
-
- String psd = SpUtil.getString(this, ConstantValue.MOBILE_SAFE_PSD, "");
- if(TextUtils.isEmpty(psd)){
-
- showSetPsdDialog();
- }else{
-
- showConfirmPsdDialog();
- }
- }
-
-
-
-
- private void showConfirmPsdDialog() {
- }
-
-
-
- private void showSetPsdDialog() {
- }
其中MOBILE_SAFE_PSD为ConstantValue类中的常量
Java代码
- package com.wuyudong.mobilesafe.Utils;
-
-
-
-
- public class ConstantValue {
-
-
-
- public static final String OPEN_UPDATE = "open_update";
-
-
-
- public static final String MOBILE_SAFE_PSD = "mobile_safe_psd";
- }
接下来就剩下在showConfirmPsdDialog和showSetPsdDialog方法中添加代码了。