我想在同一個主要活動中有2個listview。我的水平抽屜的一個列表視圖(從左邊滑動)和另一箇中心的列表視圖。當我點擊抽屜時,它會顯示抽屜列表視圖,但抽屜視圖不會滑過中心列表視圖,而是中心位於其上,所以我實際上看不到抽屜裏的任何東西。我想知道,如果有什麼問題我main_activity.xml我RES /佈局目錄(其實我不知道它是做它把一個活動的兩個列表視圖以正確的方式)在抽屜頂部的ListView ListView
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >
<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">
<ListView android:id="@+id/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>
<ListView android:id="@+id/deviceList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="#b5b5b5"
android:dividerHeight="1dp"
android:listSelector="@drawable/list_selector" />
</RelativeLayout>
你能提供你的屏幕截圖嗎?我認爲一個圖像比許多單詞講得更多。 – R4j