我最近开始学习android studio
,但对错误一无所知。
我将文本和按钮拖放到设计视图中,但是看不到它们。 []
在右上角出现了一些错误。 []
错误提示:
coordinatorLayoutStyle
。(0,0)
。谷歌搜索后我尝试过的一些修复方法是:
在styles.xml
中更改
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
到
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
[]
我也发现我应该改变:
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
到
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
但是代替alpha3
的是rc01
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
[]
对我没有任何帮助,因为我是android studio新手,请提供详细答案。
答案 0 :(得分:0)
将此内容从Gradel删除
implementation 'com.android.support:appcompat-v7:28.0.0- alpha3
并添加
implementation 'com.android.support:appcompatv7:27.0.1'
implementation 'com.android.support:design:27.0.1'
like this
android {
compileSdkVersion 27
defaultConfig {
applicationId "e.lenovo.alldemo"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}