Android - 使用SharedPreference判断字符串是否修改

使用SharedPreference判断字符串是否修改


本文地址: http://blog.csdn.net/caroline_wendy


判断字符串是否修改,可以把字符串存储在SharedPreference内,判断两次是否相同;
    private void modifyName(final String name) {
        EmptyWebOperationCallback callback = new EmptyWebOperationCallback(this) {
            @Override
            public void operationExecutedSuccess(WebOperation operation, WebOperation.WebOperationRequestResult data) {

                String modifiedName = PreferenceUtils.get(getApplicationContext(), PREF_MODIFIED_NAME, "");
                Log.d(DEBUG_WCL+TAG, "name = " + modifiedName);

                if (name.equals(modifiedName)) {
                    showToast("昵称未发生改变");
                }

                nameView.setText(name);

                PreferenceUtils.setPreference(getApplicationContext(), PREF_MODIFIED_NAME, nameView.getText().toString());

                User.getUser(MyTaskActivity.this).setDisplayName(name);
            }
        };
        ModUserInfoOperation operation = new ModUserInfoOperation(name, null, callback);
        getScheduler().sendBlockOperation(this, operation, getString(R.string.mytask_modifying_name));
    }

内容相同时,则提示Toast昵称未发生改变。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。