无法查看在android studio的设计视图中删除的文本视图

时间:2018-08-13 12:53:38

标签: android

我最近开始学习android studio,但对错误一无所知。

我将文本和按钮拖放到设计视图中,但是看不到它们。 [enter image description here]

在右上角出现了一些错误。 [enter image description here]

错误提示:

  1. 无法在当前主题中找到样式coordinatorLayoutStyle
  2. 此视图不受限制。它仅具有设计时位置,因此除非添加约束,否则它将在运行时跳至(0,0)
  3. 缺少样式。是否为此布局选择了正确的主题?

谷歌搜索后我尝试过的一些修复方法是:

styles.xml中更改

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">

[enter image description here]

我也发现我应该改变:

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'

[enter image description here]

对我没有任何帮助,因为我是android studio新手,请提供详细答案。

1 个答案:

答案 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"
}