无法解析符号 Theme.MaterialComponents.Light.NoActionBar (Android Studio)
Cannot resolve symbol Theme.MaterialComponents.Light.NoActionBar (Android Studio)
我在 styles.xml
中遇到了 'Theme.MaterialComponents.Light.NoActionBar'
的错误('Theme.MaterialComponents.Light.NoActionBar'
由于错误而显示为红色)在几次 gradle 更新之后。我的组件也没有按照我的设计思路安排好。
我已经清理并重建项目,使 caches/restart 无效,更新 gradle(可能不是正确答案),但没有答案。我只是想也许我是唯一遇到这个问题的人,也许是因为我的初学者水平问题:')
styles.xml
`
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/hitam</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
`
项目gradle
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
'
应用gradle
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 29
defaultConfig {
applicationId "blablabla"
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildToolsVersion '29.0.1'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.ar.sceneform.ux:sceneform-ux:1.10.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.firebase:firebase-core:17.0.1'
implementation 'com.google.firebase:firebase-auth:18.1.0'
implementation 'com.google.firebase:firebase-database:18.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
}
apply plugin: 'com.google.gms.google-services'
buildToolsVersion = '29.0.1'
}
`
我希望当这个世界上没有人有这个错误时,这个错误是不可见的。请帮助 T_T
MaterialComponents 主题未显示的原因是您没有在 app/build.gradle
:
中包含所需的 Material Components 库
dependencies {
implementation 'com.google.android.material:material:<version>'
}
project's GitHub releases 中列出了当前可用的版本。
Material Components themes are included in the Material Components for Android library.
由于您使用的是 androidx 库,只需在 app/build.gradle
文件中添加此依赖项即可。
dependencies {
// ...
implementation 'com.google.android.material:material:x.x.x'
// ...
}
目前(2022年4月29日)最新稳定版为
implementation 'com.google.android.material:material:1.5.0'
在这里你可以找到所有的信息the setup。
在/android/app/build中添加对Android的Material的依赖。gradle:
dependencies {
// ...
implementation 'com.google.android.material:material:<version>'
// ...
}
要查找最新版本,请访问 Google Maven。
在/android/app/src/main/res/values/styles中设置主题。xml:
//<style name="LaunchTheme" parent="Theme.AppCompat"> - remove
<style name="LaunchTheme" parent="Theme.MaterialComponents.NoActionBar"> - add
我在 styles.xml
中遇到了 'Theme.MaterialComponents.Light.NoActionBar'
的错误('Theme.MaterialComponents.Light.NoActionBar'
由于错误而显示为红色)在几次 gradle 更新之后。我的组件也没有按照我的设计思路安排好。
我已经清理并重建项目,使 caches/restart 无效,更新 gradle(可能不是正确答案),但没有答案。我只是想也许我是唯一遇到这个问题的人,也许是因为我的初学者水平问题:')
styles.xml
`
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/hitam</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
`
项目gradle
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
'
应用gradle
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 29
defaultConfig {
applicationId "blablabla"
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildToolsVersion '29.0.1'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.ar.sceneform.ux:sceneform-ux:1.10.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.firebase:firebase-core:17.0.1'
implementation 'com.google.firebase:firebase-auth:18.1.0'
implementation 'com.google.firebase:firebase-database:18.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
}
apply plugin: 'com.google.gms.google-services'
buildToolsVersion = '29.0.1'
}
`
我希望当这个世界上没有人有这个错误时,这个错误是不可见的。请帮助 T_T
MaterialComponents 主题未显示的原因是您没有在 app/build.gradle
:
dependencies {
implementation 'com.google.android.material:material:<version>'
}
project's GitHub releases 中列出了当前可用的版本。
Material Components themes are included in the Material Components for Android library.
由于您使用的是 androidx 库,只需在 app/build.gradle
文件中添加此依赖项即可。
dependencies {
// ...
implementation 'com.google.android.material:material:x.x.x'
// ...
}
目前(2022年4月29日)最新稳定版为
implementation 'com.google.android.material:material:1.5.0'
在这里你可以找到所有的信息the setup。
在/android/app/build中添加对Android的Material的依赖。gradle:
dependencies {
// ...
implementation 'com.google.android.material:material:<version>'
// ...
}
要查找最新版本,请访问 Google Maven。
在/android/app/src/main/res/values/styles中设置主题。xml:
//<style name="LaunchTheme" parent="Theme.AppCompat"> - remove
<style name="LaunchTheme" parent="Theme.MaterialComponents.NoActionBar"> - add