android控制密码显示与隐藏的方法
更新时间:2022年08月17日 08:45:49 作者:xiyangyang8110
这篇文章主要为大家详细介绍了android控制密码显示与隐藏的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了android控制密码显示与隐藏的具体代码,供大家参考,具体内容如下
<RelativeLayout android:id="@+id/view2" android:layout_width="match_parent" android:layout_height="60dp" android:layout_marginTop="20dp"> <TextView android:id="@+id/tv_phone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginStart="15dp" android:text="新密码:" android:textColor="@color/font_color_11" android:textSize="16sp" /> <EditText android:id="@+id/et_phone" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginEnd="15dp" android:layout_toEndOf="@id/tv_phone" android:background="@null" android:paddingStart="10dp" android:password="true" android:text="18333619388" android:textColor="@color/textcolor" android:textSize="16sp" /> <ImageView android:id="@+id/iv_newpw" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginLeft="-60dp" android:layout_toEndOf="@id/et_phone" android:background="@mipmap/uneye" /> <View android:layout_width="match_parent" android:layout_height="0.5dp" android:layout_alignParentBottom="true" android:layout_marginLeft="18.5dp" android:layout_marginRight="18.5dp" android:background="@color/base_color_2" /> </RelativeLayout>
private ImageView ivNewpw; private EditText etPhone; ivNewpw = (ImageView) findViewById(R.id.iv_newpw); etPhone = (EditText) findViewById(R.id.et_phone); ivNewpw.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { TransformationMethod method = etPhone.getTransformationMethod(); if (method == HideReturnsTransformationMethod.getInstance()) { etPhone.setTransformationMethod(PasswordTransformationMethod.getInstance()); ivNewpw.setBackgroundResource(R.mipmap.uneye); } else { etPhone.setTransformationMethod(HideReturnsTransformationMethod.getInstance()); ivNewpw.setBackgroundResource(R.mipmap.eye); } } });
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Android仿微信图片选择器ImageSelector使用详解
这篇文章主要为大家详细介绍了Android仿微信图片选择器ImageSelector的使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-12-12Android实现背景可滑动登录界面 (不压缩背景弹出键盘)
这篇文章主要介绍了Android实现背景可滑动登录界面 (不压缩背景弹出键盘),需要的朋友可以参考下2017-04-04Android 进度条按钮ProgressButton的实现代码
这篇文章主要介绍了Android 进度条按钮实现(ProgressButton)代码,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值 ,需要的朋友可以参考下2018-10-10Android中ActionBar和ToolBar添加返回箭头的实例代码
这篇文章主要介绍了Android中ActionBar和ToolBar添加返回箭头的实例代码,需要的朋友可以参考下2017-09-09浅析Android Dialog中setContentView()方法
本篇文章主要介绍了Android Dialog中setContentView()方法的相关知识。具有很好的参考价值。下面跟着小编一起来看下吧2017-05-05
最新评论