我将支持lib版本更新到24.2.0,现在我的注册屏幕已经死了。问题出在TextInputLayout中,我有两个方法:
protected void setError(@Nullable CharSequence errorMsg, @NonNull EditText editText, boolean forceClean) {
TextInputLayout viewParent = (TextInputLayout) editText.getParent();
if (forceClean) {
viewParent.setErrorEnabled(false);
viewParent.setError(null);
}
viewParent.setErrorEnabled(true);
viewParent.setError(errorMsg);
}
protected void clearError(@NonNull EditText editText) {
TextInputLayout viewParent = (TextInputLayout) editText.getParent();
viewParent.setErrorEnabled(false);
viewParent.setError(null);
}
我在尝试将EditText的父级转换为TextInputLayout时遇到错误,在布局中我有这样的代码:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.TextInputEditText
android:id="@+id/login_registration_firstname"
style="@style/registration_form_field"
android:hint="@string/login_registration_firstname"
android:inputType="textCapWords" />
</android.support.design.widget.TextInputLayout>
所以,这完全正常,但现在抛出ClassCastException:
java.lang.ClassCastException: android.widget.FrameLayout cannot be cast to android.support.design.widget.TextInputLayout
我想知道是否有新的指南?
答案 0 :(得分:2)
问题调查显示由于某种原因存在额外的布局,所以现在我们有TextInputLayout - &gt; FrameLayout - &gt; TextInputEditText,这很伤心:(因此我可以使用以下方法创建临时解决方法:
@Nullable
private TextInputLayout getTextInputLayout(@NonNull EditText editText) {
View currentView = editText;
for (int i = 0; i < 2; i++) {
ViewParent parent = currentView.getParent();
if (parent instanceof TextInputLayout) {
return (TextInputLayout) parent;
} else {
currentView = (View) parent;
}
}
return null;
}
这个将在视图层次结构中找到您的TextInputLayout。
如果你是幸运的,你会注意到这个粉红色的错误颜色变化,克服它的简单方法是覆盖样式,在styles.xml中:
<style name="TextAppearance.Design.Error" parent="TextAppearance.AppCompat.Caption" tools:override="true">
<item name="android:textColor">@color/red</item>
</style>
答案 1 :(得分:1)
我遇到了同样的问题,我最终使用了该库 - &gt; MaterialEditTest谁更可靠,并提供更多功能。
使用那个,你不需要嵌套元素,你可以修改小标签颜色和错误信息......
答案 2 :(得分:0)
您可以查看TextInputLayout
v24.2.x的代码。
现在它适用于FrameLayout
。
public TextInputLayout(Context context, AttributeSet attrs, int defStyleAttr) {
// Can't call through to super(Context, AttributeSet, int) since it doesn't exist on API 10
super(context, attrs);
//...
mInputFrame = new FrameLayout(context);
mInputFrame.setAddStatesFromChildren(true);
addView(mInputFrame);
//....
}
@Override
public void addView(View child, int index, final ViewGroup.LayoutParams params) {
if (child instanceof EditText) {
mInputFrame.addView(child, new FrameLayout.LayoutParams(params));
//...
} else {
// Carry on adding the View...
super.addView(child, index, params);
}
}
其中mInputFrame
是FrameLayout
。
这是您出问题的原因(父母是FrameLayout
)。
java.lang.ClassCastException:android.widget.FrameLayout无法强制转换为android.support.design.widget.TextInputLayout
您应该使用TextInputLayout
作为参数,而不是在视图层次结构中导航。