我使用EditText设计了一个带密码字段的屏幕,在EditText中我使用的是drawableRightIcon,当我们点击可绘制按钮并用另一个图标替换那个可绘图标时,它必须显示密码?有人可以帮忙吗?
答案 0 :(得分:0)
单击图像按钮时执行以下语句
String password= your_editText.getText().toString().trim();
your_editText.setText(password);
your_imgview.setImageResource(R.drawable.new_image)
答案 1 :(得分:0)
以下是我目前在我的应用中用于此目的的代码。我们基本上为我们的EditText
添加了一个触摸监听器,并确定点击是否发生在drawable上并相应地采取行动(也切换图标):
getPasswordEditText().setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
final int DRAWABLE_RIGHT = 2; // index
if (event.getAction() == MotionEvent.ACTION_UP) {
if (event.getRawX() >= (getPasswordEditText().getRight() - getPasswordEditText().getCompoundDrawables()[DRAWABLE_RIGHT].getBounds().width())) {
if (passwordShown) {
passwordShown = false;
// 129 is obtained by bitwise ORing InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD
getPasswordEditText().setInputType(129);
// Need to call following as the font is changed to mono-space by default for password fields
getPasswordEditText().setTypeface(Typeface.SANS_SERIF);
getPasswordEditText().setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.locked_icon, 0);
} else {
passwordShown = true;
getPasswordEditText().setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);
getPasswordEditText().setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.unlocked_icon, 0);
}
return true;
}
}
return false;
}
});
答案 2 :(得分:0)
使用以下代码显示和隐藏密码。您可以在复选框旁边使用ImageView
。
使用了一个复选框(除了必须使用onCLickListener之外,你也可以使用图像按钮而不是它使用相同的概念。)
loginShowHidePassword.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// EditText loses the cursor position when you change the InputType
int curPos = mPasswordView.getSelectionStart();
if (isChecked) {
mPasswordView.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
imageview.setImageResource(R.drawable.newImage);
} else {
mPasswordView.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
loginShowHidePassword.setImageResource(R.drawable.newImage);
}
mPasswordView.setSelection(curPos);
}
});
您需要在drawable中保存一个名为newImage的新图像。
mPasswordView
是密码EditText