我是Android Studio的新手,我正在尝试为我的应用添加侧面导航栏。
但我收到一条错误消息,指出该课
android.support.design.widget.NavigationalView尚未实例化。
我看不到我创建的菜单或导航标题。
我以前在Drawer布局上遇到了同样的问题。
但是我可以通过将build.gradle中的依赖项从'com.android.support:appcompat-v7:28.0.0-alpha3'和'com.android.support:design:28.0.0-alpha3'更改为“ com.android.support:appcompat-v7:28.0.0-alpha1”和“ com.android.support:design:28.0.0-alpha1”。
现在,我正在尝试通过导航视图修复该错误。
这是我的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<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">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorGrey">
<android.support.design.widget.NavigationView
android:layout_width="250dp"
android:layout_height="match_parent"
android:background="#ffff"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/nav_menu"/>
</FrameLayout>
这是我的build.gradle依赖项:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.bah.myapplication"
minSdkVersion 19
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
implementation 'com.android.support:cardview-v7:28.0.0-alpha1'
implementation 'com.android.support:design:28.0.0-alpha1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
这是我收到的错误:
答案 0 :(得分:1)
将导航视图背景更改为@android:color/white
如果不能解决问题,则styles.xml中还有其他无法解析的颜色
答案 1 :(得分:0)
这是罕见的案例,其中读取异常实际上很有帮助:D
您的例外情况表明它无法弄清您要使用的颜色。这是因为,正如@ cricket_007所评论的那样,NavigationView的android:background
属性说的是#ffff
而不是#fff
或#ffffff
。
干杯!