可能重复:
android/eclipse 中的验证
我已经看过this other post,但最佳答案仅适用TextView
于清单文件中定义的 s ,这不是我的情况。我正在使用一个DialogAlert
对象来请求一个字符串,它只能是字母数字。
[更新]
final EditText input = new EditText(MainActivityS.this);
setUserIdAlertDialog.setView(input);
setUserIdAlertDialog.setPositiveButton(getString(R.string.yesLabel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
String value = input.getText().toString();
Utils.sendStringIntent(getBaseContext(), getString(R.string.ACTION_ACTIVITY_NEW_ID), "ACTIVITY", value, getString(R.string.INTENT_EXTRA_NEW_USERNAME));
}
});
setUserIdAlertDialog.setNegativeButton(getString(R.string.noLabel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
}
});
setUserIdAlertDialog.show();