我正在编写一个 Android 应用程序以利用抽屉布局功能。我希望能够使用抽屉布局作为整个应用程序中可用的导航工具。要使用抽屉布局,我在我的活动布局 xml 文件中使用以下内容:
<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 -->
<LinearLayout
android:id="@+id/main_content_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer -->
<ListView android:id="@+id/navigational_drawer"
android:layout_width="220dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#FFFFFF"/>
</android.support.v4.widget.DrawerLayout>
但是,我在将 DrawerLayout 包裹在 PreferenceActivity 周围时遇到了很多困难。PreferenceActivity 是我想保留的一种特殊活动,因为它可以帮助我在我的应用程序中保持 Android 首选项的外观和感觉;话虽如此,它使用 addPreferencesFromResource() 调用来加载首选项,而不使用 addContentView() 调用来加载 XML 文件;首选项资源通常包含不喜欢被包装在 DrawerLayouts 中的 PreferenceScreen 标签。
任何人都必须处理这个问题,你是如何解决的?如果您的 Android 应用程序中有 PreferenceActivity 并且在同一个 Activity 上有可用的 DrawerLayout,请分享您是如何做到的。任何帮助将非常感激。
编辑:如果我改变
<!-- The main content view -->
<LinearLayout
android:id="@+id/main_content_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
至
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
然后在加载 PreferenceActivity 时应用程序不会崩溃(因为 id “list” 与 Preference Activity 期望找到的匹配);但是,抽屉没有显示。就好像 ListView“列表”下面的所有内容都被忽略了。