欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android 密碼 顯示與隱藏功能實例

 更新時間:2017年06月13日 14:10:15   作者:qq_29885865  
這篇文章主要介紹了Android 密碼 顯示與隱藏功能實例,需要的朋友可以參考下

效果:

<?xml version="1.0" encoding="utf-8"?>
<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());
    }
   }
  });
 }
}

關(guān)鍵是:

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

以上所述是小編給大家介紹的Android 密碼 顯示與隱藏功能實例,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

  • Android ImageView實現(xiàn)圖片裁剪和顯示功能

    Android ImageView實現(xiàn)圖片裁剪和顯示功能

    這篇文章主要介紹了Android ImageView實現(xiàn)圖片裁剪和顯示功能,非常不錯,具有參考借鑒價值,需要的朋友可以參考下
    2017-02-02
  • Android實現(xiàn)文件或文件夾壓縮成.zip格式壓縮包

    Android實現(xiàn)文件或文件夾壓縮成.zip格式壓縮包

    這篇文章主要為大家詳細介紹了Android實現(xiàn)文件或文件夾壓縮成.zip格式壓縮包,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-07-07
  • Android 實現(xiàn)將Bitmap 保存到本地

    Android 實現(xiàn)將Bitmap 保存到本地

    這篇文章主要介紹了Android 實現(xiàn)將Bitmap 保存到本地,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-03-03
  • Android Studio 打包生成APK文件方法

    Android Studio 打包生成APK文件方法

    Android Studio是谷歌推出一個Android集成開發(fā)工具,基于IntelliJ IDEA。這篇文章主要介紹了Android Studio 打包生成APK文件方法,需要的朋友可以參考下
    2018-07-07
  • android網(wǎng)絡(luò)圖片查看器簡單實現(xiàn)代碼

    android網(wǎng)絡(luò)圖片查看器簡單實現(xiàn)代碼

    這篇文章主要為大家詳細介紹了android網(wǎng)絡(luò)圖片查看器的簡單實現(xiàn)代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • Android EditText實現(xiàn)分割輸入內(nèi)容

    Android EditText實現(xiàn)分割輸入內(nèi)容

    這篇文章主要為大家詳細介紹了Android EditText實現(xiàn)分割輸入內(nèi)容的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-04-04
  • android中實現(xiàn)在ImageView上隨意畫線涂鴉的方法

    android中實現(xiàn)在ImageView上隨意畫線涂鴉的方法

    今天小編就為大家分享一篇android中實現(xiàn)在ImageView上隨意畫線涂鴉的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-10-10
  • Android Studio打包jar及aar包的方法

    Android Studio打包jar及aar包的方法

    這篇文章主要介紹了Android Studio打包jar及aar包的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-07-07
  • Android實現(xiàn)調(diào)用攝像頭

    Android實現(xiàn)調(diào)用攝像頭

    本文給大家分享的是,在安卓APP開發(fā)的過程中,經(jīng)常會需要調(diào)用手機自身攝像頭拍照的代碼,十分的簡單實用,有需要的小伙伴可以參考下。
    2015-07-07
  • 深入理解Android中Scroller的滾動原理

    深入理解Android中Scroller的滾動原理

    今天給大家講解的是Scroller類的滾動實現(xiàn)原理,可能很多朋友不太了解該類是用來干嘛的,但是研究Launcher的朋友應(yīng)該對他很熟悉,Scroller類是滾動的一個封裝類,可以實現(xiàn)View的平滑滾動效果,而我們今天就來探究一下為什么Scroller能夠?qū)崿F(xiàn)平滑滾動。
    2016-08-08

最新評論