无法加载AppCompat ActionBar约束布局Android Studio 3.1.3

时间:2018-08-08 19:52:45

标签: android android-layout android-studio android-fragments android-constraintlayout

这是我第一次使用Android Studio,我不知道这些错误是什么意思,我看到许多解决方案,包括将appcomat更改为alpha1并将主题更改为base.theme,但很多人都没有工作

渲染问题     “无法在当前主题中找到样式'coordinatorLayoutStyle'提示:尝试刷新布局。”

Gradle Scripts> build.gradle

  

依赖项{       实现fileTree(dir:'libs',包括:['* .jar'])       实施'com.android.support:appcompat-v7:28.0.0-rc01'       实现'com.android.support.constraint:constraint-layout:1.1.2'       实现'com.android.support:design:28.0.0-rc01'       testImplementation'junit:junit:4.12'       androidTestImplementation'com.android.support.test:runner:1.0.2'   }

     

res>值> style.xml         样式名称=“ AppTheme” parent =“ Base.Theme.AppCompat.Light.DarkActionBar”                      @ color / colorPrimary           @ color / colorPrimaryDark           @ color / colorAccent       

enter image description here 图片1

enter image description here 图片2

3 个答案:

答案 0 :(得分:2)

打开您的build.gradle(模块:应用)

实现'com.android.support:appcompat-v7:28.0.0-alpha1'

代替

实现'com.android.support:appcompat-v7:28.0.0-rc01'

希望它会为您提供帮助

答案 1 :(得分:0)

这些是我的依赖,因为它对我来说很好

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'android.arch.core:runtime:1.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.firebaseui:firebase-ui-firestore:4.1.0'
implementation 'com.android.support:recyclerview-v7:27.1.1'
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'
compile 'com.google.firebase:firebase-core:16.0.0'
apply plugin: 'com.google.gms.google-services'

}

答案 2 :(得分:0)

Base.Theme.AppCompat.Light.DarkActionBar更改为Theme.AppCompat.Light.DarkActionBar。希望它能工作。