当我使用TextInputLayout创建新的示例项目时,它的工作正常。
但是在我存在的项目中,如果我添加了TextInputlayout,则会抛出由java.lang.UnsupportedOperationException引起的运行时异常。
为什么会这样?如何解决这个问题?
编译'com.android.support:design:22.2.0'
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TextInputLayout
android:id="@+id/til"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/textDialog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="First Name"/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
为什么会这样?怎么解决这个?
答案 0 :(得分:0)
将示例项目的gradle文件与实际项目进行比较。您的项目可能未正确设置以使用Material Design资源。