我正在使用TextInputLayout,它向我显示以下错误:
无法实例化以下类: -android.support.design.widget.TextInputLayout(打开类,显示异常,清除缓存)
未显示布局预览。
我查看了TextInputLayout的代码,但是没有找到要修复的代码,这是我的代码:
<android.support.design.widget.TextInputLayout
android:id="@+id/angleMesurementTool"
android:layout_below="@+id/ifsloppedRoof"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
>
<android.support.design.widget.TextInputEditText
android:id="@+id/angleMesurementToolINput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="aaa ssddf swery asd w"
android:text=""
android:inputType="text"
android:textSize="@dimen/text_size_13"
android:nextFocusDown="@+id/buildingAgeInput"
/>
</android.support.design.widget.TextInputLayout>
但是当我从提示中删除一个字符(w)时,它就可以工作并且还会显示预览。
当我增加一个字符长度后,我没有发现什么错。
答案 0 :(得分:0)
尝试一下
<android.support.design.widget.TextInputLayout
android:id="@+id/angleMesurementTool"
android:layout_below="@+id/ifsloppedRoof"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
>
<EditText
android:id="@+id/angleMesurementToolINput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="aaa ssddf swery asd w"
android:text=""
android:inputType="text"
android:textSize="@dimen/text_size_13"
android:nextFocusDown="@+id/buildingAgeInput"
/>
</android.support.design.widget.TextInputLayout>