码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-11-19 23:46:30      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:android   io   ar   sp   for   文件   on   2014   代码   

一、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

标签:android   io   ar   sp   for   文件   on   2014   代码   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!