Android studio 的蓝图中未显示您好世界和指南

Hello world and guidelines not showing up in blueprint in Android studio

我正在尝试按照本教程 (https://developer.android.com/training/basics/firstapp/building-ui) 构建一个基本应用程序。我很确定我已正确遵循所有说明,但是在转到构建简单用户界面的图 3 之后,我的蓝图只是一个纯蓝色矩形,看起来不像教程中的图 3。

代码如下:

<?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>

当我四处寻找这个问题的更好答案时,我放弃了这个 S.O。解决方案: 对我有用。

不幸的是,预先构建的 "Hello World" 示例并不适合您,这可能会令人沮丧。