gpt4 book ai didi

android - 不要在错误时更改 TextInputLayout 背景

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:31:52 26 4
gpt4 key购买 nike

我想要一个 EditText,其背景为“普通”EditText,但具有 TextInputEditText 的错误处理(错误消息出现在底部,而不是“!”可绘制对象出现)。

我得到了这样的东西:

<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:setError="@{viewModel.error}">

<android.support.design.widget.TextInputEditText

android:layout_width="match_parent"
android:layout_height="wrap_content"

android:background="@drawable/simple_edit_text_background"
android:ellipsize="end"
android:inputType="textMultiLine|textNoSuggestions"
android:text="@={viewModel.value}"

style="@style/MyEditTextStyle" />

</android.support.design.widget.TextInputLayout>

但似乎当我在 TextInputLayout 上设置错误时,它会将背景可绘制对象(在正常的 TextInputEditText 中,下划线)更改为错误 TextView 的颜色。

这就是我的 EditText 的样子: enter image description here

我们可以在以下方法中的 TextInputLayout 代码中看到它:

private void updateEditTextBackground() {
if (mEditText == null) {
return;
}

Drawable editTextBackground = mEditText.getBackground();
if (editTextBackground == null) {
return;
}

ensureBackgroundDrawableStateWorkaround();

if (android.support.v7.widget.DrawableUtils.canSafelyMutateDrawable(editTextBackground)) {
editTextBackground = editTextBackground.mutate();
}

if (mErrorShown && mErrorView != null) {
// Set a color filter of the error color
editTextBackground.setColorFilter(
AppCompatDrawableManager.getPorterDuffColorFilter(
mErrorView.getCurrentTextColor(), PorterDuff.Mode.SRC_IN));
} else if (mCounterOverflowed && mCounterView != null) {
// Set a color filter of the counter color
editTextBackground.setColorFilter(
AppCompatDrawableManager.getPorterDuffColorFilter(
mCounterView.getCurrentTextColor(), PorterDuff.Mode.SRC_IN));
} else {
// Else reset the color filter and refresh the drawable state so that the
// normal tint is used
DrawableCompat.clearColorFilter(editTextBackground);
mEditText.refreshDrawableState();
}
}

更新背景颜色的代码块在这里:

if (mErrorShown && mErrorView != null) {
// Set a color filter of the error color
editTextBackground.setColorFilter(
AppCompatDrawableManager.getPorterDuffColorFilter(
mErrorView.getCurrentTextColor(), PorterDuff.Mode.SRC_IN));
}

因为这个方法是私有(private)的,所以我不能覆盖它,因为我仍然希望我的错误 TextView 的颜色是红色,所以到目前为止我看不到任何解决方案。有什么想法吗?

一个解决方案可能是在调用 setError 之后将背景颜色重置为其默认值,但是他们的任何回调都将被触发,例如 onError一旦错误设置为 TextView/EditText?

最佳答案

我设法通过像这样覆盖 TextInputLayout 来解决这个问题:

public class NoChangingBackgroundTextInputLayout extends TextInputLayout {
public NoChangingBackgroundTextInputLayout(Context context) {
super(context);
}

public NoChangingBackgroundTextInputLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}

public NoChangingBackgroundTextInputLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}

@Override
public void setError(@Nullable CharSequence error) {
ColorFilter defaultColorFilter = getBackgroundDefaultColorFilter();
super.setError(error);
//Reset EditText's background color to default.
updateBackgroundColorFilter(defaultColorFilter);
}

@Override
protected void drawableStateChanged() {
ColorFilter defaultColorFilter = getBackgroundDefaultColorFilter();
super.drawableStateChanged();
//Reset EditText's background color to default.
updateBackgroundColorFilter(defaultColorFilter);
}

private void updateBackgroundColorFilter(ColorFilter colorFilter) {
if(getEditText() != null && getEditText().getBackground() != null)
getEditText().getBackground().setColorFilter(colorFilter);
}

@Nullable
private ColorFilter getBackgroundDefaultColorFilter() {
ColorFilter defaultColorFilter = null;
if(getEditText() != null && getEditText().getBackground() != null)
defaultColorFilter = DrawableCompat.getColorFilter(getEditText().getBackground());
return defaultColorFilter;
}
}

正如我们所见,它在调用 setError 之后将 EditText 的背景重置为默认颜色也将焦点放在有错误的 EditText 上。

我不相信这是最好的解决方案,但如果我没有得到任何更好的解决方案,我会同时将其标记为已解决。

关于android - 不要在错误时更改 TextInputLayout 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40975232/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com