亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

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

本文實(shí)例為大家分享了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);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? });

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論