本文介紹了無法解析符號Theme.MaterialComponents.Light.NoActionBar(Android Studio)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
在幾次Gradle更新后,'Theme.MaterialComponents.Light.NoActionBar'
中的'Theme.MaterialComponents.Light.NoActionBar'
出現錯誤(由于錯誤,'Theme.MaterialComponents.Light.NoActionBar'
顯示為紅色)。我的組件也沒有按照我的設計理念很好地排列。
我已經清理和重建項目、使緩存失效/重新啟動、更新Gradle(可能不是正確的答案),但對此沒有答案。我只是在想,也許我是唯一一個有這個問題的人,可能是因為我的初學者水平:‘)
style es.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>
`
項目成績
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
}
‘
App 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
推薦答案
Material Components themes包含在Material Components for Android library中。
因為您使用的是androidx庫,所以只需在app/build.gradle
文件中添加此依賴項。
dependencies {
// ...
implementation 'com.google.android.material:material:x.x.x'
// ...
}
目前最新穩定版本為
implementation 'com.google.android.material:material:1.1.0'
您可以在此處找到所有信息the setup。
這篇關于無法解析符號Theme.MaterialComponents.Light.NoActionBar(Android Studio)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,