【问题标题】:setError message is affecting scrollview from scrolling androidsetError 消息正在影响滚动 android 的滚动视图
【发布时间】:2017-01-11 10:33:52
【问题描述】:
【问题讨论】:
标签:
android
android-layout
android-edittext
android-scrollview
androiddesignsupport
【解决方案1】:
我也有同样的问题。对我有用的是在 TextInputLayout 元素而不是 EditText 上调用 setError()。
Java:
TextInputLayout mEmailInputLayout;
mEmailInputLayout = (TextInputLayout) findViewById(R.id.emailInputLayout);
mEmailInputLayout.setError("error Msg");
XML:
<!--Email-->
<android.support.design.widget.TextInputLayout
android:id="@+id/emailInputLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<EditText
android:id="@+id/email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"/>
</android.support.design.widget.TextInputLayout>