我正在制作一个简单的 Android 应用程序,我想制作一个 DrawerLayout 菜单。我去用的时候说必须声明抽屉布局。我检查了我的 SDK 管理器,并且安装了 android 支持 jar 并且是最新的。
我尝试卸载并重新安装,但没有帮助。我也尝试创建一个新项目,但没有奏效。
代码:
<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" />
<!-- The navigation drawer -->
<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="#111"/>
</android.support.v4.widget.DrawerLayout>
错误:
Element android.support.v4.widget.DrawerLayout must be declared
其他信息:
最低 API:7
构建 API:18
IDE:Android Studio (使用 Gradle)
Android Studio 内部版本号:AI-132.863010 (最新)
我现在使用的是 Android Studio 3.0