1. 程式人生 > >在Linearlayout中新增ScrollView支持滾動

在Linearlayout中新增ScrollView支持滾動

rri measure height true 新增 lis void width 如果

https://blog.csdn.net/wenzhi20102321/article/details/53491176

1、一般只需要在布局中加個ScrollView即可

2、如果布局中包含listView或者gridView的話,需要重寫listView或者gridView中的onMeasure方法

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int height = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, height);
    }

  

在Linearlayout中新增ScrollView支持滾動