Android-checkbox实现明文显示密码

来源:互联网 发布:java中的socket编程 编辑:程序博客网 时间:2024/06/02 05:29

.xml代码如下:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <TextView        android:id="@+id/txt"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="请输入:" />    <EditText        android:id="@+id/txt1"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:password="true"        android:textSize="30px" />    <CheckBox        android:id="@+id/checkbox1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="显示密码" /></LinearLayout>

.java代码如下:

package org.lxh.demo;import android.app.Activity;import android.os.Bundle;import android.text.method.HideReturnsTransformationMethod;import android.text.method.PasswordTransformationMethod;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.CheckBox;import android.widget.EditText;import android.widget.TextView;public class Hello extends Activity {private EditText password = null;private CheckBox show = null;public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState); // 生命周期方法super.setContentView(R.layout.main); // 设置要使用的布局管理器this.password = (EditText) super.findViewById(R.id.txt1);this.show = (CheckBox) super.findViewById(R.id.checkbox1);this.show.setOnClickListener(new OnClickListenerImpl());}private class OnClickListenerImpl implements OnClickListener {public void onClick(View arg0) {if (show.isChecked()) {Hello.this.password.setTransformationMethod(HideReturnsTransformationMethod.getInstance());} else {Hello.this.password.setTransformationMethod(PasswordTransformationMethod.getInstance());}}}}
运行如下:

源码下载地址:http://download.csdn.net/detail/yayun0516/8363413

1 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 连云港市住房公积金查询系统 上海住房公积金查询个人账户 滁州住房公积金查询 住房公积金办理条件 住房公积金怎么交 住房公积金密码是什么 赣州住房公积金查询个人账户 南宁市住房公积金中心 昆山住房公积金查询 住房公积金办理 宜宾住房公积金查询 连云港住房公积金查询 柳州住房公积金管理中心 个人住房公积金查询 南宁市住房公积金 住房公积金异地买房 滁州市住房公积金管理中心 住房公积金查询个人账户查询 吉林市住房公积金 洛阳市住房公积金管理中心 河北省住房公积金查询 内蒙古住房公积金管理中心 常州住房公积金管理中心 住房公积金中心 无锡住房公积金管理中心 重庆住房公积金管理中心 吉林省住房公积金 黄石住房公积金查询个人账户 唐山住房公积金管理中心 唐山住房公积金 遵义市住房公积金查询 湖南省住房公积金查询 深圳市住房公积金 保定住房公积金管理中心 阜阳住房公积金查询 临沂住房公积金查询 呼和浩特住房公积金管理中心 住房公积金管理中心网 南京住房公积金查询 邯郸住房公积金查询 石家庄住房公积金管理中心