CoordinatorLayout no está visible en la vista Diseño
Di que tengo un fragmento:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
/>
</android.support.design.widget.AppBarLayout>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:paddingLeft="@dimen/registration_activity_horizontal_margin"
android:paddingRight="@dimen/registration_activity_horizontal_margin"
android:paddingTop="@dimen/registration_activity_vertical_margin"
>
...
</android.support.constraint.ConstraintLayout>
</android.support.design.widget.CoordinatorLayout>
En la vista Diseño obtengo esta imagen.
¿Cómo mostrar un diseño correcto?