我创建的应用程序会检查用户是否输入了字母或数字,然后会弹出一个按钮。如果用户没有输入单个字母,则会显示验证。
这是我尝试调试[主要活动]的一个例子。 PS。不是我的真实代码]:
private EditText edittext;
Button checkBtn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
addKeyListener();
}
public void addKeyListener() {
edittext = (EditText) findViewById(R.id.editText);
checkBtn = (Button) findViewById(R.id.button1);
checkBtn.setVisibility(View.INVISIBLE);
edittext.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
if ((event.getAction() == KeyEvent.ACTION_DOWN)
&& (keyCode == KeyEvent.KEYCODE_ENTER)) {
checkBtn.setVisibility(View.VISIBLE);
return true;
else if ((event.getAction() == KeyEvent.ACTION_DOWN)
&& (keyCode == KeyEvent.KEYCODE_9)) {
// display a floating message
Toast.makeText(MyAndroidAppActivity.this,
"Number 9 is pressed!", Toast.LENGTH_LONG).show();
return true;
}
return false;
}
});
}
}
问题: 当用户键入字母而不单击回车键时,是否有一种方法可以自动显示按钮。如果用户没有输入字母,则会弹出一个无效的验证,并且该按钮不会显示。
我试着寻找合适的答案,但我仍然无法找到它。
答案 0 :(得分:2)
你,我的朋友,需要一个
EditText editText = (EditText)findViewById(R.id.edittext);
editText .addTextChangedListener(new TextWatcher() {
@Override
public void afterTextChanged(Editable s) {
; //Do nothing
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
; //Do nothing
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
//TODO put your code here.
}
});
现在,只需查看“s”字母序列是否包含您的信件,您就可以上路了。
编辑: 一旦你有CharSequence,只需检查第一个字母是否是一个字母。
要获得第一个字符,请执行
s.charAt(0); //Note: if there is nothing here, it could throw a null pointer.
Character类有一个静态函数,您可以使用它来查看它是否是一个名为
的字母(或数字,大写,小写,数字,数字或字母等)Character.isLetter(char);
所以你可以做类似
的事情 public void onTextChanged(CharSequence s, int start, int before, int count) {
//Check to see that there is at least 1 char to look at.
//Then check to see if it is a letter.
//(Note: the && is AND, so both things have to be true)
if (s.length() > 0 && Character.isLetter(s.charAt(0))) {
; //Display your button
} else {
; //Display your error
}
}
这有帮助吗?
您可以创建一个名为MyTextWatcher的新类(在其自己的文件中,您可以将其导入任何位置或作为类中的类(如果所有编辑文本都在同一区域中)),然后在其中执行你现在熟悉的常规材料:
public class MyTextWatcher implements TextWatcher {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
}
}
我个人更喜欢在包含edittext的类中进行,但它可以放在一个单独的文件中(您导入)然后它更可重用。如果由于任何原因,您需要使用TextWatcher访问内容,则可以将它们作为构造函数传递。在类中执行操作的好处是您不必将内容传递给构造函数。这对你来说只是少了些事情。但这是一个构造函数的例子......
public class MyTextWatcher implements TextWatcher {
private Thing1 mThing1;
private Thing2 mThing2;
public MyTextWatcher(Thing1 t1, Thing2 t2) {
mThing1 = t1;
mThing2 = t2;
}
...
}
注意:做到这一点时,请注意不要过多地将事物链接起来。它可以在以后变得毛茸茸。 :)
答案 1 :(得分:0)
试试这个我不确定这是你期望的确切解决方案。
button = (Button) findViewById(R.id.button1);
button.setVisibility(View.GONE);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if(editText.getText().length() > 0 && !s.toString().equals("\n")){
button.setVisibility(View.VISIBLE);
}
else{
button.setVisibility(View.GONE);
Toast.makeText(MainActivity.this, "Invalid", Toast.LENGTH_SHORT).show();
}
}
@Override
public void afterTextChanged(Editable s) {
}
});