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

android控制密碼顯示與隱藏的方法

 更新時間:2022年08月17日 08:45:49   作者:xiyangyang8110  
這篇文章主要為大家詳細介紹了android控制密碼顯示與隱藏的方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了android控制密碼顯示與隱藏的具體代碼,供大家參考,具體內(nèi)容如下

<RelativeLayout
? ? ? ? ? ? android:id="@+id/view2"
? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? android:layout_height="60dp"
? ? ? ? ? ? android:layout_marginTop="20dp">

? ? ? ? ? ? <TextView
? ? ? ? ? ? ? ? android:id="@+id/tv_phone"
? ? ? ? ? ? ? ? android:layout_width="wrap_content"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:layout_centerVertical="true"
? ? ? ? ? ? ? ? android:layout_marginStart="15dp"
? ? ? ? ? ? ? ? android:text="新密碼:"
? ? ? ? ? ? ? ? android:textColor="@color/font_color_11"
? ? ? ? ? ? ? ? android:textSize="16sp" />

? ? ? ? ? ? <EditText
? ? ? ? ? ? ? ? android:id="@+id/et_phone"
? ? ? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:layout_centerVertical="true"
? ? ? ? ? ? ? ? android:layout_marginEnd="15dp"
? ? ? ? ? ? ? ? android:layout_toEndOf="@id/tv_phone"
? ? ? ? ? ? ? ? android:background="@null"
? ? ? ? ? ? ? ? android:paddingStart="10dp"
? ? ? ? ? ? ? ? android:password="true"
? ? ? ? ? ? ? ? android:text="18333619388"
? ? ? ? ? ? ? ? android:textColor="@color/textcolor"
? ? ? ? ? ? ? ? android:textSize="16sp" />

? ? ? ? ? ? <ImageView
? ? ? ? ? ? ? ? android:id="@+id/iv_newpw"
? ? ? ? ? ? ? ? android:layout_width="wrap_content"
? ? ? ? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? ? ? ? android:layout_centerVertical="true"
? ? ? ? ? ? ? ? android:layout_marginLeft="-60dp"
? ? ? ? ? ? ? ? android:layout_toEndOf="@id/et_phone"
? ? ? ? ? ? ? ? android:background="@mipmap/uneye" />

? ? ? ? ? ? <View
? ? ? ? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? ? ? ? android:layout_height="0.5dp"
? ? ? ? ? ? ? ? android:layout_alignParentBottom="true"
? ? ? ? ? ? ? ? android:layout_marginLeft="18.5dp"
? ? ? ? ? ? ? ? android:layout_marginRight="18.5dp"
? ? ? ? ? ? ? ? android:background="@color/base_color_2" />
</RelativeLayout>
private ImageView ivNewpw;
private EditText etPhone;


ivNewpw = (ImageView) findViewById(R.id.iv_newpw);
etPhone = (EditText) findViewById(R.id.et_phone);
ivNewpw.setOnClickListener(new View.OnClickListener() {
? ? ? ? ? ? @Override
? ? ? ? ? ? public void onClick(View v) {
? ? ? ? ? ? ? ? TransformationMethod method = etPhone.getTransformationMethod();
? ? ? ? ? ? ? ? if (method == HideReturnsTransformationMethod.getInstance()) {
? ? ? ? ? ? ? ? ? ? etPhone.setTransformationMethod(PasswordTransformationMethod.getInstance());
? ? ? ? ? ? ? ? ? ? ivNewpw.setBackgroundResource(R.mipmap.uneye);
? ? ? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? ? ? etPhone.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
? ? ? ? ? ? ? ? ? ? ivNewpw.setBackgroundResource(R.mipmap.eye);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? });

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android 軟件自動更新功能實現(xiàn)的方法

    Android 軟件自動更新功能實現(xiàn)的方法

    本篇文章小編為大家介紹,Android 軟件自動更新功能實現(xiàn)的方法。需要的朋友參考下
    2013-04-04
  • Android仿qq頂部消息欄效果

    Android仿qq頂部消息欄效果

    這篇文章主要介紹了Android仿qq頂部消息欄效果,需要的朋友可以參考下
    2018-04-04
  • android實現(xiàn)圖片橡皮擦和快速染色功能

    android實現(xiàn)圖片橡皮擦和快速染色功能

    這篇文章主要為大家詳細介紹了android實現(xiàn)圖片橡皮擦和快速染色功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • Android編譯的注意事項

    Android編譯的注意事項

    今天小編就為大家分享一篇關(guān)于Android編譯的注意事項,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧
    2018-12-12
  • Android實現(xiàn)隨手指移動小球

    Android實現(xiàn)隨手指移動小球

    這篇文章主要為大家詳細介紹了Android實現(xiàn)隨手指移動小球,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-08-08
  • SpringBoot 打包文件名增加編譯時間

    SpringBoot 打包文件名增加編譯時間

    這篇文章主要為大家介紹了SpringBoot 打包編譯時間實現(xiàn)過程詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-08-08
  • Android利用繪制緩沖實現(xiàn)代碼雨效果

    Android利用繪制緩沖實現(xiàn)代碼雨效果

    看過很多代碼雨的前端實現(xiàn),卻很少看到過Android代碼雨效果的實現(xiàn),當然 open gl es的實現(xiàn)是有的,一個主要的原因是,在Android Canvas繪制時,很少有人考慮使用繪制緩沖,所以本文將給大家介紹Android如何利用繪制緩沖實現(xiàn)代碼雨效果,需要的朋友可以參考下
    2024-03-03
  • android開發(fā)中ListView與Adapter使用要點介紹

    android開發(fā)中ListView與Adapter使用要點介紹

    項目用到ListView,由于要用到 ImageView ,圖片源不是在資源里面的,沒法使用資源 ID,因此無法直接使用SimpleAdapter,要自己寫一個Adapter。 在使用ListView和Adapter需要注意以下幾點
    2013-06-06
  • Flutter?Flow實現(xiàn)滑動顯隱層示例詳解

    Flutter?Flow實現(xiàn)滑動顯隱層示例詳解

    這篇文章主要為大家介紹了Flutter?Flow實現(xiàn)滑動顯隱層示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-03-03
  • Android高級界面組件之拖動條和評星條的功能實現(xiàn)

    Android高級界面組件之拖動條和評星條的功能實現(xiàn)

    這篇文章主要介紹了Android高級界面組件之拖動條和評星條的實現(xiàn)實例,需要的的朋友參考下
    2017-03-03

最新評論