首页 > 移动平台 > 详细

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

时间:2014-11-19 23:43:44      阅读:343      评论:0      收藏:0      [点我收藏+]

一、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添加默认提示信息

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

原文:http://www.cnblogs.com/dalan/p/4109368.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!