2
我有Android項目,我必須更改最後一個exxpanded組(它將崩潰)的佈局和被點擊的組。 onGroupClick方法我有:可擴展列表視圖android更改佈局點擊
int cnt=list.getChildCount();
//set layout to all groups (for closed group)
for(int i = 0; i < cnt; i`enter code here`++){
View group = adapter.getGroupView(i, false,
null, list);
LinearLayout childLayout = (LinearLayout) group.findViewById(R.id.newsLayout); childLayout.setBackgroundResource(R.layout.group_layout_shape);
}
// set layout of clicked group
LinearLayout groupLayout = (LinearLayout) v.findViewById(R.id.newsLayout);
groupLayout.setBackgroundResource(R.layout.group_layout_opened_shape);`enter code here`
它改變點擊組的佈局(這將擴大),但不改變組的佈局,即colapses :(可ayone幫我