拖放组件在android studio中的预览中不可见

时间:2018-07-23 04:55:22

标签: android android-layout android-studio

我是android开发的初学者。我创建了一个android项目。但是在预览部分中,我看不到这些组件。 enter image description here但是,当我在模拟器上运行相同的应用程序时,可以看到组件。我在这里缺少设置吗? XML在下面给出。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    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>

3 个答案:

答案 0 :(得分:2)

我也遇到了这个问题,只选择了另一个“主题”原因就解决了 默认主题appTheme不显示添加的项目。 如果您选择“半透明”,则任何项目均可见;-)

欢呼 奥利万

答案 1 :(得分:0)

也许听起来很奇怪,但是对此进行了自我测试。

  • 将XML文件(可能是activity_x.xml)布局的根标记android.support.constraint.ConstraintLayout更改为LinearLayout,然后预览将再次开始工作(就我而言)。 [如果没有,请执行强制刷新(R)]

  • 然后切换回旧版本,我的意思是:将XML文件(可能是activity_x.xml)布局的根标记LinearLayout更改为android.support.constraint.ConstraintLayout。并强制刷新。

答案 2 :(得分:0)

这似乎确实是Android Studio中的错误。当它显示给我时,我通过在应用程序build.gradle(更改版本代码)中进行了微小更改来进行修复,进行gradle同步,然后再更改并再次同步。

此后,设计视图再次起作用。