可以通过设置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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。