欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

scrollview

錢瀠龍2年前17瀏覽0評論

scrollview?

listview的高度是一定的話,可以重寫一個listview在onmesure方法里設定固定高度,如下代碼:

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(MeasureSpec.UNSPECIFIED, 0) );

int childHeight = getMeasuredHeight() - (getListPaddingTop() + getListPaddingBottom() + getVerticalFadingEdgeLength() * 2);

int fullHeight = getListPaddingTop() + getListPaddingBottom() + childHeight*(getCount());

setMeasuredDimension(getMeasuredWidth(), fullHeight)

java listget,scrollview