Android Studio 3 - 约束布局编辑器无法正常工作

时间:2018-01-15 13:18:20

标签: android android-constraintlayout

我最近安装了android studio 3但是约束布局显示了一个灰色的窗口..我尝试了一切,但我无法解决问题

提前感谢您提供的任何帮助:

enter image description here

enter image description here

XML代码:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.constraint.ConstraintLayout 
    xmlns:android="schemas.android.com/apk/res/android"; 
    xmlns:app="schemas.android.com/apk/res-auto"; 
    xmlns:tools="schemas.android.com/tools"; 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="com.example.chihaoui.myapplication.MainActivi‌​ty"> 
</android.support.constraint.ConstraintLayout>

5 个答案:

答案 0 :(得分:1)

我有类似的问题。通过在app / build.gradle上添加以下行来解决我的情况:

implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation('com.android.support:appcompat-v7:28.0.0') {
    force = true
}

请注意force = true部分。

答案 1 :(得分:0)

您是否同步了项目,如果您没有同步项目,我会在gradle文件中看到黄色消息

答案 2 :(得分:0)

我只是帮助制作了项目并获得了

example

答案 3 :(得分:0)

老鹰的回应解决了我的问题。如果将布局转换为由旧的android studio构建的项目的约束,则这是唯一可行的选项。

答案 4 :(得分:-3)

尝试相对布局

替换此布局

enter image description here

到RelativeLayout

enter image description here

也替换在activity_main.xml中。 enter image description here

对我来说有效。

注意

对不起,英语不好,我的国家通常不使用英语。