設計expendablelistview,在單個佈局recylerview(GridView控件)以前我設計expandablelistview和recyclerview內滾動型,但我在堆棧溢出看到他們說這不是好主意,從來沒有把滾動視圖內的另一個滾動視圖。那我該如何設計呢? 這是我以前的代碼:我如何能在Android的
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ExpandableListView
android:id="@+id/secPage_explist"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:choiceMode="singleChoice"
android:groupIndicator="@null"
android:nestedScrollingEnabled="true"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/grid_recycler_template"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/oreser_item_seperator"
/>
</LinearLayout>
</ScrollView>
請告訴我任何一個。的Expandablelistview
和RecyclerView
編程和刪除
感謝您的回覆,我怎麼能計算GridLayoutManager和Expandablelistview編程 – Rgv
我編輯我的答案。從那裏你可以以編程方式計算ExpandableListview的高度..以同樣的方式,你可以做GridLayoutManager ....如果你堅持任何地方,讓我知道。謝謝 –
謝謝你的支持。它只在子項不可見的情況下工作。如果子元素可見,則摺疊。 – Rgv