我想在setError
TextInputLayout
时 isEmpty
,我写这段代码但是当显示错误消息时,请设置红色背景TextInputLayout
!
我不希望设置背景! 我想要只显示错误消息。
我的代码:
if (TextUtils.isEmpty(userName)) {
register_UserName_layout.setError("Insert Username");
}
XML代码:
<android.support.design.widget.TextInputLayout
android:id="@+id/register_userUsernameTextLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/register_headerLayout"
android:layout_margin="10dp"
android:textColorHint="#c5c5c5">
<EditText
android:id="@+id/register_userUserNameText"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/selector_bg_edit"
android:hint="نام کاربری"
android:paddingBottom="2dp"
android:textColor="@color/colorAccent"
android:textCursorDrawable="@drawable/bg_input_cursor"
android:textSize="16sp" />
</android.support.design.widget.TextInputLayout>
我该如何解决这个问题?谢谢所有&lt; 3
答案 0 :(得分:11)
我找到了解决此问题的方法。您只需要创建一个自定义的EditText并覆盖它的getBackground()方法以返回一个新的drawable。这样TextInputLayout就无法在EditText的背景上设置滤色器,因为你没有返回EditText的背景,而是另一个可绘制的。见下文:
@Override
public Drawable getBackground() {
return ContextCompat.getDrawable(getContext(), R.drawable.some_drawable);
}
并使用TextInputLayout中的自定义EditText:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CustomEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/custom_edit_text_bg" />
</android.support.design.widget.TextInputLayout>
答案 1 :(得分:2)
您可以继承TextInputLayout并使用它:
package com.mypackage;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.support.annotation.Nullable;
import android.support.design.widget.TextInputLayout;
import android.util.AttributeSet;
public class CustomTextInputLayout extends TextInputLayout {
public CustomTextInputLayout(Context context) {
super(context);
}
public CustomTextInputLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomTextInputLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void drawableStateChanged() {
super.drawableStateChanged();
clearEditTextColorfilter();
}
@Override
public void setError(@Nullable CharSequence error) {
super.setError(error);
clearEditTextColorfilter();
}
private void clearEditTextColorfilter() {
EditText editText = getEditText();
if (editText != null) {
Drawable background = editText.getBackground();
if (background != null) {
background.clearColorFilter();
}
}
}
}
布局中的:
<com.mypackage.CustomTextInputLayout
android:id="@+id/register_userUsernameTextLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/register_headerLayout"
android:layout_margin="10dp"
android:textColorHint="#c5c5c5">
<EditText
android:id="@+id/register_userUserNameText"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/selector_bg_edit"
android:hint="نام کاربری"
android:paddingBottom="2dp"
android:textColor="@color/colorAccent"
android:textCursorDrawable="@drawable/bg_input_cursor"
android:textSize="16sp" />
</android.support.design.widget.TextInputLayout>
答案 2 :(得分:2)
在我的情况下,我添加了行
&lt; solid android:color =“@ color / transparent”/&gt;
<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke android:color="@color/lightGray" android:width="1dp"/>
<solid android:color="@color/transparent"/>
<padding android:top="7dp" android:bottom="7dp" android:left="7dp" android:right="7dp"/>
<corners android:radius="2dp"/>
</shape>
这会导致红色边框不是整个背景
答案 3 :(得分:2)
此问题的底线是检查您的EditText是否设置了背景颜色。如果是这样,请将其删除,然后在您的文本“输入布局”小部件上放置背景色。这将解决红色大框的问题。至少对我有用。
答案 4 :(得分:1)
子类EditText并应用以下方法:
覆盖getBackground并创建一个带输入背景的Drawable
@Override
public Drawable getBackground() {
return ContextCompat.getDrawable(getContext(), R.drawable.input_background);
}
你的Drawable input_brackground可以是:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid
android:color="@color/inputBackgroundColor">
</solid>
</shape>
在TextInputLayout设置错误之后应用EditText子类setBackground:
private void showTheError(String error){
textInputLayout.setError(error);
editTextSubclassed.setBackgroundColor(getResources().getColor(R.color.inputBackgroundColor));
}
答案 5 :(得分:0)
if (TextUtils.isEmpty(userName)) {
register_UserName_layout.setError("Insert Username");
txtInpit.setColorFilter(R.color.white);
}
答案 6 :(得分:0)
与Shahin Mursalov的答案类似,我在构造函数中调用方法init()
来存储创建视图时的背景drawable。此外,我还覆盖方法setBackgroundResource()
以存储背景,并从getBackground()
返回:
public class CustomEditText extends EditText{
private Drawable backgroundDrawable;
public EditTextContext context) {
super(context);
this.context = context;
}
public EditTextContext context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
init(attrs);
}
public EditText(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
this.context = context;
init(attrs);
}
public void init(AttributeSet attrs){
TypedArray attributes = context.obtainStyledAttributes(attrs, new int[]{android.R.attr.background});
this.backgroundDrawable = attributes.getDrawable(0);
attributes.recycle();
}
@Override
public void setBackgroundResource(@DrawableRes int resId) {
this.backgroundDrawable = ContextCompat.getDrawable(context, resId);
super.setBackgroundResource(resId);
}
@Override
public Drawable getBackground() {
if (backgroundDrawable != null){
return backgroundDrawable;
} else {
return super.getBackground();
}
}
}
这样我可以在布局中指定不同的背景并以编程方式更改它。
答案 7 :(得分:0)
首先,您的EditText背景selector_bg_edit应该是这样的
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/code_view_item"
android:state_focused="true"/>
<item android:drawable="@drawable/sign_in_fields"
android:state_focused="false"/>
<item android:drawable="@drawable/sign_in_fields"
android:state_active="false"/>
</selector>
最重要的是像这样将可绘制对象放入透明颜色 code_view_item.xml
<stroke android:width="1dp" android:color="#15A859" />
<solid android:color="#00FFFFFF" />
<corners android:radius="12dp"/>
答案 8 :(得分:0)
对我有用的只是将其放在我的自定义编辑文本类下面的行中:
override fun getBackground(): Drawable {
return this.context.getDrawable(R.drawable.myDrawableResource)
}
答案 9 :(得分:0)
我的解决方案:
yourEdit.background.clearColorFilter()