我们可以在 Edittext 中成功设置错误,但在 textview 中设置失败。有什么问题吗??我试过
((TextView) findViewById(R.id.df)).requestFocus();
((TextView) findViewById(R.id.df)).setSelected(true);
((TextView) findViewById(R.id.df)).setError("akjshbd");
但我没有弹出错误。
我们可以在 Edittext 中成功设置错误,但在 textview 中设置失败。有什么问题吗??我试过
((TextView) findViewById(R.id.df)).requestFocus();
((TextView) findViewById(R.id.df)).setSelected(true);
((TextView) findViewById(R.id.df)).setError("akjshbd");
但我没有弹出错误。
默认 TextView 不可聚焦。所以,你需要设置android:focusable="true"和android:focusableInTouchMode="true"。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:text="@string/hello_world" />
并且无需设置 setSelected(true)。
((TextView) findViewById(R.id.df)).requestFocus();
((TextView) findViewById(R.id.df)).setError("akjshbd");
实际上,您可以为 textView 使用 setError 并显示它的弹出窗口。
您只需要使用与 EditText 相同的样式。
只需在 xml 中为 textView 添加下一个属性:
style="@android:style/Widget.EditText"
这是您唯一需要在 TextView 上获得预期的 setError 行为
android:focusable="true"
android:clickable="true"
android:focusableInTouchMode="true"
片段:你必须 requestFocus(); 显示错误的视图。
// Check for a valid email address.
if (TextUtils.isEmpty(mEmail)) {
mEmailView.setError(getString(R.string.error_field_required));
focusView = mEmailView;
cancel = true;
} else if (!mEmail.contains("@")) {
mEmailView.setError(getString(R.string.error_invalid_email));
focusView = mEmailView;
cancel = true;
}
if (cancel) {
// There was an error; don't attempt login and focus the first
// form field with an error.
focusView.requestFocus();
} else {
// Show a progress spinner, and kick off a background task to
// perform the user login attempt.
// showProgress(true);
// mAuthTask = new UserLoginTask();
// mAuthTask.execute((Void) null);
ParseUser.logInInBackground(mEmail, mPassword, new LogInCallback() {
@Override
public void done(ParseUser user, ParseException e) {
finishAndStartCardActivity();
}
});
}