我想在我的应用程序中使用导航抽屉。根据此处的谷歌文档,我这样编写我的 UI 代码:
<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">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
MAIN LAYOUT IS HERE
</FrameLayout>
<!-- 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>
这就像谷歌自己的例子,但它在布局预览中给了我一个错误:
Exception raised during rendering: DrawerLayout must be measured with MeasureSpec.EXACTLY.
我搜索了很多,有人说你必须为 android:layout_width 和 android:layout_height 设置明确的值。当我这样做时,一切都会好起来的,但我不想设置明确的值!因为我不知道每个设备的宽度和高度......我该如何解决?解决方案是什么?
我已经将 android-support-v4.jar 文件放在 lib 文件夹中。我认为它的最新版本。