错误膨胀类android.Support.Design.widget.NavigationView我学习了一个关于新组件的教程。导航视图在“支持设计库”中,无法通过以下错误消息:Error inflating class android.support.design.widget.NavigationView我试过这里的每一种方法使用任何Android设计支持库元素时出错但是错误信息仍然存在。XML<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include layout="@layout/toolbar" android:id="@+id/mainToolBar" />
<fragment android:name="com.ais.cherry.fragment.LoginFragment"
android:id="@+id/loginFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/mainToolBar" />
<fragment android:name="com.ais.cherry.fragment.WaterFallFragment"
android:id="@+id/mainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/mainToolBar" />
<fragment android:name="com.ais.cherry.fragment.SearchFragment"
android:id="@+id/searchFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/mainToolBar" />
<fragment android:name="com.ais.cherry.fragment.ChatMainFragment"
android:id="@+id/chatMainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/mainToolBar" />
<fragment android:name="com.ais.cherry.fragment.ProfileFragment"
android:id="@+id/profileFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/mainToolBar" />任何帮助都将不胜感激
3 回答
慕码人2483693
TA贡献1860条经验 获得超9个赞
我也犯过类似的错误。当我用
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorPrimary">#673AB7</item> <item name="colorPrimaryDark">#512DA8</item> <item name="colorAccent">#00BCD4</item> <item name="android:textColorPrimary">#212121</item> <item name="android:textColorSecondary">#727272</item></style>
当我移除Android:textColor小学和Android:textColor二级主题项时,对我有用。
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorPrimary">#673AB7</item> <item name="colorPrimaryDark">#512DA8</item> <item name="colorAccent">#00BCD4</item></style>
尝试使用一个非常简单的应用程序主题来开始。
编辑:
这,这个补习会有帮助的。我的理解是,使用“Android:text着色小学”需要最低的API级别21。在没有使用“android:”的情况下使用相同的标记,使用设计支持库。任何支持库小部件都将尝试查找“textColor主体”项,而不是“android:textColor变得”,如果找不到相同的项,就会抛出上面提到的错误。
添加回答
举报
0/150
提交
取消