91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android:密碼顯示隱藏

發布時間:2020-04-04 23:38:35 來源:網絡 閱讀:421 作者:沒有水勒魚 欄目:移動開發

activity_main.xml的完整代碼:


<?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>


MainActivity.java里的完整代碼:



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.activity_main);
        
        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:密碼顯示隱藏Android:密碼顯示隱藏


向AI問一下細節

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

AI

南丹县| 滦平县| 娄烦县| 益阳市| 资中县| 开远市| 华容县| 偃师市| 河西区| 剑河县| 方城县| 津南区| 永州市| 黄骅市| 绍兴市| 綦江县| 佛教| 新郑市| 苗栗县| 宜丰县| 韶关市| 华阴市| 双城市| 兴文县| 思南县| 合作市| 中卫市| 城市| 达日县| 连山| 仁布县| 德阳市| 全州县| 耒阳市| 柘荣县| 武功县| 台前县| 历史| 聊城市| 敦煌市| 瑞安市|