列表视图不处理项目单击



我在导航抽屉中使用ListView。一切工作正常,但最近它停止处理点击事件时,我甚至没有触及我的代码的那一部分。我在onItemClick中放置了一个断点,但它永远不会到达那一行。

这是我的代码:

private void initializeDrawer(){
     ...
     String[] mDrawerMenu = {"Option1", "Option2", "Option3"};
     mDrawerList.setAdapter(new ArrayAdapter<String>(this, R.layout.drawer_list_item, mDrawerMenu));
     mDrawerList.setOnItemClickListener(new DrawerItemClickListener());
}
private class DrawerItemClickListener implements ListView.OnItemClickListener {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        Toast toast = Toast.makeText(context, "Click on Option " + position, Toast.LENGTH_LONG);
        toast.show();
    }
}

这是"drawer_list_item.xml":

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/text1"
        android:layout_width="match_parent"
        android:layout_height="40sp"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:textColor="#fff"
        android:textSize="20sp"
        android:focusable="false"
     />

谢谢你的帮助。

我意识到我的导航抽屉布局缺少一个"主内容视图"。我不知道这是怎么回事,但它解决了这个问题。

<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 THIS WAS MISSING-->
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:id="@+id/frame_container">
    </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>

相关内容

  • 没有找到相关文章

最新更新