Android 代码设置密码输入框内容的显示/隐藏

 

//内容可见

mEtPassword.setTransformationMethod(HideReturnsTransformationMethod.getInstance());

//内容不可见

mEtPassword.setTransformationMethod(PasswordTransformationMethod.getInstance());

 

	private Button mBtnPassword;
	private EditText mEtPassword;
	private boolean mbDisplayFlg = false;
	
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        mEtPassword = (EditText)findViewById(R.id.password);
        mBtnPassword = (Button)findViewById(R.id.btnPassword);
        mBtnPassword.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				Log.d("AndroidTest", "mbDisplayFlg = " + mbDisplayFlg);
				if (!mbDisplayFlg) {
					// display password text, for example "123456"
					mEtPassword.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
				} else {
					// hide password, display "."
					mEtPassword.setTransformationMethod(PasswordTransformationMethod.getInstance());
				}
				mbDisplayFlg = !mbDisplayFlg;
				mEtPassword.postInvalidate();
			}
        	
        });
       
    }

 

posted @ 2016-03-17 14:46  zhou_guobao  阅读(3440)  评论(0编辑  收藏  举报