拖放功能在Android Studio中不起作用。甚至无法点击显示属性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了拖放功能在Android Studio中不起作用。甚至无法点击显示属性相关的知识,希望对你有一定的参考价值。
我想将元素拖放到设计视图中,但我不能。当点击进入屏幕或默认的TextView中显示“Hello World!”时,我甚至看不到属性。我尝试重新启动android Studio,重建项目,我仍然遇到问题。
下面的代码来自我的文件'activity_main.xml'。
怎么回事?我只是尝试在屏幕设计中添加'GridLayout',但是要使用它我必须安装一个库来使用该网格布局,因为我这样做了,我不能再使用设计视图了。
即使我得到'IDE Fatal Error'(截图如下)。
<?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>
答案
从build.gradle(app)中删除实现'com.android.support.constraint:constraint-layout:+'希望解决这个问题
以上是关于拖放功能在Android Studio中不起作用。甚至无法点击显示属性的主要内容,如果未能解决你的问题,请参考以下文章
Jquery UI Touch Punch点击事件在Android应用程序中不起作用[重复]