欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 解决ScrollView嵌套CridView显示问题

程序员文章站 2023-12-10 16:24:16
android 解决scrollview嵌套cridview显示问题 由于gridview是可滑动的控件,嵌套在scrollview下时需要重写onmeasure方法。...

android 解决scrollview嵌套cridview显示问题

由于gridview是可滑动的控件,嵌套在scrollview下时需要重写onmeasure方法。

public class mygridview extends gridview{
   public mygridview(context context, attributeset attrs) { 
      super(context, attrs); 
    } 
   
    public mygridview(context context) { 
      super(context); 
    } 
   
    public mygridview(context context, attributeset attrs, int defstyle) { 
      super(context, attrs, defstyle); 
    } 
   
    @override 
    public void onmeasure(int widthmeasurespec, int heightmeasurespec) { 
   
      int expandspec = measurespec.makemeasurespec(integer.max_value >> 2, 
          measurespec.at_most); 
      super.onmeasure(widthmeasurespec, expandspec); 
    } 
}

然后在布局xml文件中引入mygridview即可。listview同理。

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!