| | |
| | | // 二次确认提示框 |
| | | ConfirmationCancelDialog dialog = new ConfirmationCancelDialog(_mActivity); |
| | | dialog.setTitle(getString(R.string.loading_title_tip)); |
| | | dialog.setContent("密码修改成功,将重新登录."); |
| | | dialog.setContent(_mActivity.getString(R.string.home_password_changed_successfully_log_in)); |
| | | dialog.show(); |
| | | dialog.setYesOnclickListener(new ConfirmationCancelDialog.onYesOnclickListener() { |
| | | @Override |
| | |
| | | return false; |
| | | } |
| | | if (oldPsw.equals(newPsw)) { |
| | | HdlThreadLogic.tipFlashingBox(_mActivity, true, "原密码和新密码不能一样.", -1); |
| | | HdlThreadLogic.tipFlashingBox(_mActivity, true, getString(R.string.home_old_password_not_new_password), -1); |
| | | return false; |
| | | } |
| | | return true; |