广告
返回顶部
首页 > 资讯 > 移动开发 >Android实现密码隐藏和显示
  • 280
分享到

Android实现密码隐藏和显示

Android密码隐藏Android密码显示Android密码隐藏显示 2022-11-13 14:11:09 280人浏览 安东尼
摘要

本文实例为大家分享了Android实现密码隐藏和显示的具体代码,供大家参考,具体内容如下 在Android开发中,需要密码的隐藏和显示,下面就和大家分享一下使用方法: xml代码:

本文实例为大家分享了Android实现密码隐藏和显示的具体代码,供大家参考,具体内容如下

在Android开发中,需要密码的隐藏和显示,下面就和大家分享一下使用方法:

xml代码:

<LinearLayout 
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:background="@color/white"
            android:orientation="horizontal" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:text="新密码"
                android:textColor="@color/black"
                android:textSize="18dp"
                android:gravity="center_vertical"
                android:layout_marginLeft="15dp"/>

            <EditText
                android:id="@+id/newpassWord"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:layout_gravity="center_vertical"
                android:layout_marginLeft="10dp"
                android:inputType="textPassword"
                android:hint="请设置登录密码"
                android:background="@null"/>

            <CheckBox
                android:id="@+id/CheckBox"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_marginRight="15dp"
                android:textSize="16dp"
                android:text="显示"
                />

</LinearLayout>

####隐藏图标代码

android:button="@null"

JAVA代码:



public class ChargepsdActivity extends Activity {

    private EditText editText;
    private CheckBox checkBox;

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_chargepsd);

        editText = (EditText) findViewById(R.id.newpassword);
        checkBox = (CheckBox) findViewById(R.id.CheckBox);

        checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

                if(isChecked){
                    //如果选中,显示密码
                    editText.setTransfORMationMethod(HideReturnsTransformationMethod.getInstance());
                }else{
                    //否则隐藏密码
                    editText.setTransformationMethod(PasswordTransformationMethod.getInstance());

                }

            }
        });

    }
}

效果展示:

Android开发~获取验证码倒计时实现

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

--结束END--

本文标题: Android实现密码隐藏和显示

本文链接: https://www.lsjlt.com/news/171499.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作