您好,登錄后才能下訂單哦!
可以通過設置EditText的inputType屬性來實現密碼的隱藏與顯示切換。當inputType設置為"textPassword"時,密碼會顯示為隱藏的圓點;當inputType設置為"textVisiblePassword"時,密碼會顯示為明文。
示例代碼如下所示:
<EditText
android:id="@+id/passwordEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="Password"/>
<Button
android:id="@+id/showHideButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show/Hide Password"/>
Button showHideButton = findViewById(R.id.showHideButton);
showHideButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
EditText passwordEditText = findViewById(R.id.passwordEditText);
if (passwordEditText.getInputType() == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
passwordEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
} else {
passwordEditText.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
}
// 將光標移動到末尾
passwordEditText.setSelection(passwordEditText.getText().length());
}
});
以上代碼中,通過點擊按鈕來切換密碼的顯示方式。當密碼為明文時,點擊按鈕后會變為隱藏的圓點;當密碼為隱藏的圓點時,點擊按鈕后會變為明文。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。