我如何在 android studio 上查看 xml Drawerlayout 文件

How can i see the xml Drawerlayout file on android studio

我正在 android studio 上创建 XML 抽屉布局文件,但无法在 android studio 上预览我收到这个错误我该如何解决这个问题

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
<ListView android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp"
    android:background="#fff"/>

我收到这个错误:

渲染问题以下类无法found:android.support.v4.widget.Drawer布局(修复构建路径,创建类) 提示:尝试构建项目。

问题是您可能使用了较低的 minSdkVersion。我有同样的问题,我将 minSdkVersion 设置为 14,将其更改为 17(在 build.gradle 中)并且它正确呈现。

也可能是Android支持库问题

步骤

右击项目->Android工具->添加支持库

然后我刚刚清理了项目并为我工作...

并且显然检查 Android 库和其他库...