码迷,mamicode.com
首页 > 其他好文 > 详细

在Linearlayout中新增ScrollView支持滚动

时间:2018-05-05 17:20:05      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:nbsp   make   GridView   onmeasure   spec   包含   linear   measure   super   

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支持滚动

标签:nbsp   make   GridView   onmeasure   spec   包含   linear   measure   super   

原文地址:https://www.cnblogs.com/longjunhao/p/8995207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!