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

溫馨提示×

溫馨提示×

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

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

Android中實現密碼的隱藏和顯示的示例

發布時間:2020-08-24 03:34:23 來源:腳本之家 閱讀:465 作者:L展菲Q 欄目:移動開發

在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代碼:

/**
 * Created by fby on 2017/9/11.
 */

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中實現密碼的隱藏和顯示的示例

Android中實現密碼的隱藏和顯示的示例

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

陕西省| 马龙县| 齐齐哈尔市| 沈阳市| 岳池县| 遵义市| 山东省| 海伦市| 顺义区| 浑源县| 简阳市| 靖西县| 乌拉特中旗| 怀集县| 卢湾区| 和平县| 旬阳县| 芜湖县| 蕉岭县| 汉源县| 天全县| 类乌齐县| 紫云| 玉树县| 冀州市| 邮箱| 沙河市| 万年县| 石首市| 米易县| 贺州市| 兴国县| 文水县| 平果县| 淮北市| 中卫市| 霍邱县| 湟源县| 准格尔旗| 靖边县| 江阴市|