Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android - 使用SharedPreference判斷字符串是否修改

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

編輯:關於Android編程

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

 

 

 

判斷字符串是否修改,可以把字符串存儲在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昵稱未發生改變。

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved