在Android開發中,需要密碼的隱藏和顯示,下面就和大家分享一下使用方法:
創新互聯-專業網站定制、快速模板網站建設、高性價比興國網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式興國網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋興國地區。費用合理售后完善,10余年實體公司更值得信賴。
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中實現密碼的隱藏和顯示的示例
文章地址:http://vcdvsql.cn/article10/phocdo.html
成都網站建設公司_創新互聯,為您提供關鍵詞優化、外貿網站建設、云服務器、軟件開發、面包屑導航、網站策劃
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯