中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android應用中怎么實現一個密碼顯示與隱藏功能

發布時間:2020-12-07 16:42:00 來源:億速云 閱讀:149 作者:Leah 欄目:移動開發

Android應用中怎么實現一個密碼顯示與隱藏功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

實現代碼如下:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" >
 <EditText
  android:id="@+id/editText1"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:ems="10"
  android:inputType="textPassword" >
  <requestFocus />
 </EditText>
 <CheckBox
  android:id="@+id/checkBox1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="顯示密碼" />
</LinearLayout>
package com.example.test;
import android.app.Activity;
import android.os.Bundle;
import android.text.method.HideReturnsTransformationMethod;
import android.text.method.PasswordTransformationMethod;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.TextView;
public class MainActivity extends Activity {
private TextView editText1;
private CheckBox checkBox1;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.test);
  editText1 =(TextView) findViewById(R.id.editText1);
  checkBox1=(CheckBox) findViewById(R.id.checkBox1);
  checkBox1.setOnCheckedChangeListener(new OnCheckedChangeListener() {
   @Override
   public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    // TODO Auto-generated method stub
    if(isChecked){
     //如果選中,顯示密碼  
     editText1.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
    }else{
     //否則隱藏密碼
     editText1.setTransformationMethod(PasswordTransformationMethod.getInstance());
    }
   }
  });
 }
}

關鍵是:

editText1.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
editText1.setTransformationMethod(PasswordTransformationMethod.getInstance());

看完上述內容,你們掌握Android應用中怎么實現一個密碼顯示與隱藏功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扬州市| 凤山市| 绍兴市| 田阳县| 恩平市| 邵东县| 潢川县| 浑源县| 丹寨县| 扶绥县| 乌拉特后旗| 宜都市| 元氏县| 衡东县| 景谷| 嘉定区| 北海市| 呼和浩特市| 云安县| 抚州市| 中卫市| 沁水县| 新野县| 聂荣县| 甘孜县| 城步| 定州市| 东丽区| 霍州市| 西安市| 崇左市| 威远县| 鹰潭市| 阳泉市| 宣汉县| 胶州市| 云林县| 驻马店市| 景德镇市| 遵化市| 翁源县|