Error inflating class android.support.design.widget.TextInputLayout

**在我尝试一个小项目的过程之中想要做一个答题系统,但是没有很好的ideal变找到了其他大牛的作品但是在尝试的过程之中一直都一些个问题:**Error inflating class android.support.design.widget.TextInputLayout
在很多次找寻答案无果以及求助无果以后,我仔细阅读了另一位的源码,发现了问题的所在

android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginTop=“8dp”
android:layout_marginBottom=“8dp”>


替换为:
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginTop=“8dp”
android:layout_marginBottom=“8dp”
android:theme="@style/AppTheme.Dark.Dialog">
android:id="@+id/input_password"
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:inputType=“textPassword”
android:hint=“密码”/>

三天时间一直没有前进一步全是因为自己的不仔细的查看别人的源码导致的后果,实在是无奈啊

你可能感兴趣的:(Error inflating class android.support.design.widget.TextInputLayout)