淘先锋技术网

首页 1 2 3 4 5 6 7

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

<android.support.design.widget.TextInputLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginTop=“8dp”
android:layout_marginBottom=“8dp”>

</android.support.design.widget.TextInputLayout>
替换为:
<com.google.android.material.textfield.TextInputLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginTop=“8dp”
android:layout_marginBottom=“8dp”
android:theme="@style/AppTheme.Dark.Dialog">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input_password"
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:inputType=“textPassword”
android:hint=“密码”/>
</com.google.android.material.textfield.TextInputLayout>
三天时间一直没有前进一步全是因为自己的不仔细的查看别人的源码导致的后果,实在是无奈啊