我正在创建简单的 AppCompatEditText,添加 OnFocusChangeListener 并将其放入简单的 TextInputLayout。
当 AppCompatEditText 失去焦点时,它的内容应该通过 isValidParam 方法进行验证。
它一直工作到昨天,当我使用 rev.23.0.3 但是现在,当我使用 rev.24.0.2 时,它在 isValidParam 方法的第一行给出如下错误。
java.lang.ClassCastException: android.widget.FrameLayout 无法转换为 android.support.design.widget.TextInputLayout
我检查了调试模式。AppCompatEditText.getpParent() 真正返回 Framelayout 而不是 TextInputLayout。
LinearLayout llParams = new LinearLayout(context);
llParams.setOrientation(LinearLayout.VERTICAL);
// Create label for param
final TextInputLayout tilParam = new TextInputLayout(context);
// Add label into layout
llParams.addView(tilParam);
// Create Editor for param
final AppCompatEditText etParam = new AppCompatEditText(context);
edParam.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus)
if (isValidParam(etParam)) {
do some thing;
} else {
do other thing;
}
}
});
tilParam.addView(etParam);
// validation method
boolean isValidParam(AppCompatEditText editText) {
TextInputLayout til = (TextInputLayout) editText.getParent();
String text = editText.getText().toString().trim();
if (!text.equls("some criteria") {
till.setError("Error text")
return false;
}
return true;
}