Google Android SDK开发范例------------20141119

一、Edit和Checkbox完成对登陆密码的查看:添加Edit的setOnCheckedChageListener和对CheckBox的状态通过isCHecked判断

大体代码如下

CheckBox.setOnClickedChangeListener(

  new CheckBox.OnClickedChangeListener()
  {  

    public void onCheckedChanged(CompoundButton arg0, boolean arg1){
       if(checkbox.isChecked()){
          EditText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
       }
       else{
          EditText.setTransformationMethod(PasswordTransformationMethod.getInstance());
       }
    }

  }

);

同时在layout.xml文件中添加android:hint添加默认提示信息

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