我有兩個expandableListView活動中,起初,我把他們的LinearLayout裏面,但是當第expandableListView擴大太多的項目,我不能看到第二內側:兩個ExpandableListView滾動型
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical" >
<ExpandableListView
android:id="@+id/myContactELV"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ExpandableListView>
<ExpandableListView
android:id="@+id/myGroupELV"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ExpandableListView>
</LinearLayout>
的第一視圖包括組aaa,bbb的,CCC和第二包括DDD,EEE:
當第一膨脹,第二個是超出視線,並且屏幕不滾動:
所以我想將它們放在一個滾動視圖,而且更糟糕:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ExpandableListView
android:id="@+id/myContactELV"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ExpandableListView>
<ExpandableListView
android:id="@+id/myGroupELV"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ExpandableListView>
</LinearLayout>
</ScrollView>
所以,當兩個expandableListview擴大,我想清楚地看到每一個項目,並在屏幕滾動。我怎麼能做到這一點?
描述使用兩個ELV的原因。 –
這兩個ELV應該有不同的數據源,適配器和不同的含義。這裏的數據是爲了簡單,它們不是真實的。 – cameron
你是什麼意思?滾動視圖中的 –