拖放功能在Android Studio中不起作用。甚至无法点击显示属性

问题描述 投票:0回答:1

我想将元素拖放到设计视图中,但我不能。当点击进入屏幕或默认的TextView中显示“Hello World!”时,我甚至看不到属性。我尝试重新启动Android Studio,重建项目,我仍然遇到问题。

下面的代码来自我的文件'activity_main.xml'。

怎么回事?我只是尝试在屏幕设计中添加'GridLayout',但是要使用它我必须安装一个库来使用该网格布局,因为我这样做了,我不能再使用设计视图了。

即使我得到'IDE Fatal Error'(截图如下)。

错误ide图像: error ide image

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>
android-studio android-studio-3.2
1个回答
0
投票

从build.gradle(app)中删除实现'com.android.support.constraint:constraint-layout:+'希望解决这个问题

© www.soinside.com 2019 - 2024. All rights reserved.