android DrawerLayout问题

如果我在DrawerLayout里添加三个view,代码如下

 <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">
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ListView
        android:id="@+id/left_drawer_1"
        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"/>

 <ListView
        android:id="@+id/left_drawer_2"
        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>

我想要的是打开抽屉listview1,然后在listview1里面打开listview2,可是打开listview1后,listview1可以打
开listview2,并且点击阴影部分或者按手机的back键可以关闭listview2返回到listview1,但是这时点击阴影部分却不能关闭
listview1而且按back键也没有响应。求大神门解答

代码贴的好乱。。。可以重写onBackPress方法打下log看看

你只贴了布局文件,最好能把你的那部分实现代码贴出来。。不然也不知道问题到底在哪

附上代码或者图,效果好些。http://www.kwstu.com/ArticleView/manong_201409050729327685