Android Studio Design无法显示任何内容

时间:2018-06-17 08:13:06

标签: android android-studio

编辑:我是stackoverflow的新手,所以它不会让我直接上传..请点击下面的链接 Android Studio EMPTY DESIGN

它在模拟器和我的物理设备中工作得很好,但我在设计版面上看不到任何东西.. 我通过搜索谷歌尝试了以下解决方案 更新了SDK 更新了Android Studio 我还尝试了Build> Clean Project

文件>无效缓存/重启 试图将API更改为旧版本,如API 25和API 26 ..(当前安装的API 28).. 仍然没有任何作用帮助我.. XML代码

  
<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" />

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@null"
        app:srcCompat="@drawable/ball_100x100"
        tools:layout_editor_absoluteX="127dp"
        tools:layout_editor_absoluteY="399dp" />

</android.support.constraint.ConstraintLayout>

2 个答案:

答案 0 :(得分:2)

无论如何我发现了对此的回答。也许是Android Studio中的一个错误.. 解 转到顶部的设计平面,单击主题图标,然后选择任何Light.DarkActionBar 例如 Material Light-&gt; Material.Light.DarkActionBar ..

答案 1 :(得分:0)

在你的样式xml文件中更改:

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

到此:

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

适合我。