안 드 로 이 드 핸드폰 위 사의 비밀번호 확인 대화 상자

본 고 는 이어서'비밀번호 확인'기능 을 실현 했다.즉,사용자 가 이전에 비밀 번 호 를 설정 한 적 이 있 는데 지금 은 비밀번호 확인 만 입력 해 야 한다.

레이아웃 파일 과<안 드 로 이 드 폰 가 디 언-비밀번호 설정 대화 상자>의 레이아웃 은 기본적으로 유사 합 니 다.모든 copy 를 한 번 수정 하면 세부 사항 을 수정 하면 됩 니 다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical">

 <TextView
 style="@style/TitleStyle"
 android:background="#f00"
 android:text="    "
 />
 <EditText
 android:id="@+id/et_confirm_psd"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:hint="    "
 />

 <LinearLayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content">

 <Button
 android:id="@+id/bt_submit"
 android:layout_width="0dp"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="  " />

 <Button
 android:id="@+id/bt_cancel"
 android:layout_width="0dp"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:text="  " />
 </LinearLayout>

</LinearLayout>
코드 논리 도 기본적으로 비슷 하 니 간단하게 수정 하 세 요.

 /**
 *        
 */
 private void showConfirmPsdDialog() {
 //               ,     dialog.setView(view);
 Builder builder = new Builder(this);
 final AlertDialog dialog = builder.create();
 final View view = inflate(this, R.layout.dialog_confirm_psd, null);
 //                    
 dialog.setView(view);
 dialog.show();

 Button bt_submit = (Button) view.findViewById(R.id.bt_submit);
 Button bt_cancel = (Button) view.findViewById(R.id.bt_cancel);

 bt_submit.setOnClickListener(new OnClickListener() {
 @Override
 public void onClick(View v) {
 EditText et_confirm_psd = (EditText) view.findViewById(R.id.et_confirm_psd);
 String confirmPsd = et_confirm_psd.getText().toString();
 String psd = SpUtil.getString(getApplicationContext(),ConstantValue.MOBILE_SAFE_PSD, "");
 if(!TextUtils.isEmpty(confirmPsd)){
  //          
  if(psd.equals(confirmPsd)) {
  Intent intent = new Intent(getApplicationContext(), testActivity.class);
  startActivity(intent);
  //                 
  dialog.dismiss();
  } else {
  ToastUtil.show(getApplicationContext(),"      ");
  }

 }else{
  //             
  ToastUtil.show(getApplicationContext(),"     ");
 }
 }
 });
 bt_cancel.setOnClickListener(new OnClickListener() {
 @Override
 public void onClick(View view) {
 dialog.dismiss();
 }
 });
 }
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기