您好,登錄后才能下訂單哦!
activity中加載系統(tǒng)自帶的ExpandableListView;
自定義一個CustomExpandableListView作為ExpandableListView的子Item;
CustomExpandableListView中重寫onMeasure()方法:
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
該方法是控制ExpandableListView顯示高度,上面代碼實現(xiàn)了ExpandableListView將所有的Item都顯示,但是有一個問題:
例如:List A的item是CunstomExpandableListView B,B共有10item,則如果B的item也是CustomExpandableListView C,則C展開的item數(shù)count1與B能顯示的Item數(shù)count2之和為10;
這樣可以實現(xiàn)三級,再多就不會弄了;
注:這本來是要寫一個動態(tài)的n層的ExpandableListView但是當子ExpandableListView展開時不能控制好Group的高度;所以放棄了,尋找其他的實現(xiàn)方式;
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。