老生常談的滑動沖突問題色洞,今天遇到與大家分享下
1丘侠、在ScrollView或ListView等滑動控件中嵌套ListView時危彩,往往會導致ListView顯示不完整攒磨,只顯示一條數(shù)據(jù),想使ListView顯示完整可以通過重寫ListView的onMeasure方法來解決:
public class CustomListView extends ListView {
public CustomListView(Context context) {
super(context);
}
public CustomListView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,? MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
}
2汤徽、除此外還有一種解決方法:根據(jù)ListView子項重置其高度娩缰。
java代碼:
/**
* 重新計算ListView的高度,解決ScrollView和ListView兩個View都有滾動的效果谒府,在嵌套使用時起沖突的問題
* @param listView
*/
public void setListViewHeight(ListView listView) {
// 獲取ListView對應的Adapter
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
for (int i = 0, len = listAdapter.getCount(); i < len; i++) { // listAdapter.getCount()返回數(shù)據(jù)項的數(shù)目
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(0, 0); // 計算子項View 的寬高
totalHeight += listItem.getMeasuredHeight(); // 統(tǒng)計所有子項的總高度
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
listView.setLayoutParams(params);
}
在設置ListView的Adapter填充數(shù)據(jù)后調(diào)用此方法便可拼坎。