ListFragment.onListItemClick() 未被调用;可能是由于导航抽屉

Posted

技术标签:

【中文标题】ListFragment.onListItemClick() 未被调用;可能是由于导航抽屉【英文标题】:ListFragment.onListItemClick() not being called; possibly due to Navigation Drawer 【发布时间】:2015-05-15 01:49:26 【问题描述】:

我很困惑为什么我的onListItemClick() 方法没有被调用。

我正在阅读有关该主题的this question,它提到布局中的任何其他组件都需要设置android:focusable="false"

但是,这是我对该课程的布局。如您所见,它没有其他组件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_
    android:layout_
    android:orientation="vertical" >

    <ListView
        android:id="@android:id/list"
        android:layout_
        android:layout_ >
    </ListView>
</LinearLayout>

我检查了父活动的布局,它确实有一些其他组件,即抽屉布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".MainActivity" >

<FrameLayout 
    android:layout_ 
    android:layout_ 
    android:id="@+id/fragment_container"> 
</FrameLayout>

<!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. -->
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_
    android:layout_>

    <!-- As the main content view, the view below consumes the entire
         space available using match_parent in both dimensions. -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_
        android:layout_ />

    <!-- android:layout_gravity="start" tells DrawerLayout to treat
         this as a sliding drawer on the left side for left-to-right
         languages and on the right side for right-to-left languages.
         The drawer is given a fixed width in dp and extends the full height of
         the container. A solid background is used for contrast
         with the content view. -->
    <ListView
        android:id="@+id/left_drawer"
        android:layout_
        android:layout_
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>
</android.support.v4.widget.DrawerLayout>    

您可以看到我的 ListFragment 包含在名为 fragment_containerFrameLayout 中。

DrawerLayout 会阻止调用我的onListItemClick() 方法吗? 而且,如果是这样,我该如何设置无法聚焦(这是一个非常大的布局......我应该把android:focusable="false"放在哪里)?

【问题讨论】:

【参考方案1】:

解决方案 - 将 DrawerLayout 设置为基本布局。您不需要在抽屉布局之外使用RelativeLayout,因为它没有用。这可能是一个提示here

你的布局应该是

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".MainActivity"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_
    android:layout_>

    <!-- As the main content view, the view below consumes the entire
         space available using match_parent in both dimensions. -->
    <RelativeLayout 
        android:layout_
        android:layout_ >

        <!-- Recommended to use only one as both are match_parent -->
        <FrameLayout 
            android:layout_ 
            android:layout_ 
            android:id="@+id/fragment_container"/>
        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_
            android:layout_ />
    </RelativeLayout>

    <!-- android:layout_gravity="start" tells DrawerLayout to treat
         this as a sliding drawer on the left side for left-to-right
         languages and on the right side for right-to-left languages.
         The drawer is given a fixed width in dp and extends the full height of
         the container. A solid background is used for contrast
         with the content view. -->
    <ListView
        android:id="@+id/left_drawer"
        android:layout_
        android:layout_
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>
</android.support.v4.widget.DrawerLayout>   

【讨论】:

【参考方案2】:

我发现了这个问题。我添加了一个FrameLayout 来包含我的Fragment,但我现在看到DrawerLayout 中已经包含了一个FrameLayout(称为content_frame)。所以我只使用了content_frame 而不是fragment_container

【讨论】:

以上是关于ListFragment.onListItemClick() 未被调用;可能是由于导航抽屉的主要内容,如果未能解决你的问题,请参考以下文章