7

我正在编写一个 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“列表”下面的所有内容都被忽略了。

4

1 回答 1

2

这花了我一段时间,但我能够为我的应用程序完成这项工作。我不知道它是否有区别,但我正在使用HoloEverywhere,所以我只假设这也适用于标准PreferenceActivity

在我PreferenceActivity覆盖所有版本setContentView()以加载我的自定义时DrawerLayout,它就像你的一样,并且具有ListView标准的 android id list。在最后一种方法中,我确保在调用onContentChanged()后调用super.setContentView()

@Override
public void setContentView(int layoutResID)
    {
    setContentView( getLayoutInflater().inflate( layoutResID ) );
    }

@Override
public void setContentView(View view)
    {
    setContentView( view, new LayoutParams( LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT ) );
    }

@Override
public void setContentView(View view, LayoutParams params)
    {

    // inflate the drawer layout

    super.setContentView( R.layout.navigation_drawer_base_layout );

    DrawerLayout dl = findViewById(R.id.drawer_layout);

    // do stuff here initialize the DrawerLayout like add a DrawerToggle, etc

    ...STUFF

    // Call onContentsChanged() to let the Activity know it needs to refresh itself.

    onContentChanged();

    }

onBuildHeaders()我仍然呼吁为我不同的 sloadHeadersFromResource()创建所有s。HeaderPreferenceScreen

于 2013-09-24T20:01:30.667 回答