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

溫馨提示×

溫馨提示×

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

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

Android開發中項目實現一個顯示輸入密碼的功能

發布時間:2020-11-23 17:41:04 來源:億速云 閱讀:212 作者:Leah 欄目:移動開發

Android開發中項目實現一個顯示輸入密碼的功能?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

具體如下:

main.xml:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<TextView
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/hello"
  />
 <EditText
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:inputType="textPassword"
  android:id="@+id/mima"
 />
 <CheckBox android:text="顯示密碼"  android:layout_width="wrap_content"
  android:layout_height="wrap_content" android:id="@+id/xianshifou"/>
</LinearLayout>

Java代碼:

public class M extends Activity {
  private EditText et;
  private CheckBox cb;
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    et=(EditText)findViewById(R.id.mima);
    cb=(CheckBox)findViewById(R.id.xianshifou);
    cb.setOnCheckedChangeListener(new OnCheckedChangeListener(){
      @Override
      public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
        // TODO Auto-generated method stub
        if(cb.isChecked()){
          //設置EditText的密碼為可見的
          et.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
        }else{
          //設置密碼為隱藏的
          et.setTransformationMethod(PasswordTransformationMethod.getInstance());
        }
      }
    });
  }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

景德镇市| 河间市| 菏泽市| 吴川市| 永宁县| 布拖县| 内江市| 宜阳县| 娱乐| 博兴县| 呼玛县| 黔西县| 平湖市| 类乌齐县| 建湖县| 平远县| 蛟河市| 绥宁县| 青龙| 海门市| 苍溪县| 绥江县| 兴和县| 将乐县| 加查县| 红河县| 榆林市| 安顺市| 双辽市| 柳林县| 太保市| 合水县| 连平县| 昌平区| 宣汉县| 福州市| 斗六市| 廉江市| 公主岭市| 罗平县| 庄河市|