**在我尝试一个小项目的过程之中想要做一个答题系统,但是没有很好的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>
三天时间一直没有前进一步全是因为自己的不仔细的查看别人的源码导致的后果,实在是无奈啊
例如parent=“Theme.MaterialComponents.Light.DarkActionBar”修改application-->
android
theme=“@style/Theme”theme需要继承MaterialComponents中的一种即可。需要设置Material的主题。
在填充布局时R.
layout
.dialog_item里面含有theme时报错
Error
infla
ting
class
Layout
Infla
ter
infla
ter =
Layout
Infla
ter.from(mContext);
View view =
infla
ter.
infla
te(R.
layout
.dialog_item, null);
被布局里面有theme,需要在对应的只需
Android
Manifest加入,activity中加入theme
<activity
今天在用
android
.
support
.
design
.
widget
.AppBar
Layout
布局的时候 碰到一个问题,“
Error
infla
ting
class
android
.
support
.
design
.
widget
.AppBar
Layout
” 很奇怪 这个类明明存在,build.gradle引的是implementation 'com.
android
.
support
:
design
:28.0...
浮动框样式异常
Caused by:
android
.view.
Infla
teException: Binary XML file line #10 in com.example.administrator.myapplication:
layout
/activity_event_simple: Binary XML file line #10 in com.example.administrator.myapplication:
layout
/activity_e
不知道大家刚开始用snackbar的时候是否遇到问题,我最开始写的时候就是在普通的activity中写了snackbar,结果就报了下面这个错误:
Error
infla
ting
class
android
.
support
.
design
.
widget
.Snackbar$Snackbar
Layout
解决方案:
首先,使用snackbar必须要使用
compile 'com.an
最近刚好在做一个安卓app,
android
studio
环境下运行的,在制作过程中(完全是自学的),在做app过程中,需要用到底部导航条(像微信小程序那种),于是在网上搜索并简单浏览使用。
我用的是(基于
android
P(9.0)版本的BottomNavigationView使用教程(去除动画效果,水波纹效果))
下面是该文章的链接地址,https://www.jianshu.com/p/d...
在:https://stackoverflow.com/questions/38423809/
android
-
support
-
design
-
widget
-
textinput
layout
-could-not-be-instantiated