5

TextView: でエラー ポップアップ ウィンドウのカスタム レイアウトを設定する方法はありますか 有効な XHTML
ではtextView.setError(String, Drawable)、エラー アイコンのみを設定できます。 showError()メソッドTextView and ErrorPopup class are private, so I can't work with them.

Any ideas? Thanks in advance! Michael

UPD:
Thanks for comments, but as I understand it, the theme trick isn't applicable here: (TextView 3384 line from android-10)

void fixDirection(boolean above) {
    mAbove = above;

    if (above) {
        mView.setBackgroundResource(com.android.internal.R.drawable.popup_inline_error_above);
    } else {
        mView.setBackgroundResource(com.android.internal.R.drawable.popup_inline_error);
    }
}    

android-15 では com.android.internal.R.styleable.Theme_errorMessageBackground テーマ パラメータが使用されますが、これは内部的なものです。
したがって、独自のエラー通知を作成する以外に、この問題を解決する方法はありません):

4

0 に答える 0