32

我们可以在 Edittext 中成功设置错误,但在 textview 中设置失败。有什么问题吗??我试过

((TextView) findViewById(R.id.df)).requestFocus();
((TextView) findViewById(R.id.df)).setSelected(true);
((TextView) findViewById(R.id.df)).setError("akjshbd");

但我没有弹出错误。

文本视图错误

4

4 回答 4

98

默认 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");
于 2013-04-11T16:45:04.977 回答
42

实际上,您可以为 textView 使用 setError 并显示它的弹出窗口。

您只需要使用与 EditText 相同的样式。

只需在 xml 中为 textView 添加下一个属性:

style="@android:style/Widget.EditText"
于 2013-02-17T15:48:23.400 回答
13

这是您唯一需要在 TextView 上获得预期的 setError 行为

android:focusable="true"
android:clickable="true"
android:focusableInTouchMode="true"
于 2014-07-21T12:33:22.393 回答
5

片段:你必须 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();
    }
    });
}
于 2013-01-10T22:43:42.897 回答