您好,登錄后才能下訂單哦!
activity中加載系統自帶的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顯示高度,上面代碼實現了ExpandableListView將所有的Item都顯示,但是有一個問題:
例如:List A的item是CunstomExpandableListView B,B共有10item,則如果B的item也是CustomExpandableListView C,則C展開的item數count1與B能顯示的Item數count2之和為10;
這樣可以實現三級,再多就不會弄了;
注:這本來是要寫一個動態的n層的ExpandableListView但是當子ExpandableListView展開時不能控制好Group的高度;所以放棄了,尋找其他的實現方式;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。