在SrollView中嵌套GridView或ListView(转)

 

原文链接:http://blog.csdn.net/gaojinshan/article/details/17055511

 

  我想在同一个界面中,使用两个GridView,两个GridView一起上下滚动;
如果直接将两个GridView添加到同一个界面上,它们是各自滚动的。
因此,我考虑使用SrollView,将它们包装一下!
但这样做会提示如下信息:
The vertically scrolling ScrollView should not contain another vertically scrolling widget (GridView)
并且GridView的界面也显示不全,只显示了一部分。

  网上搜了一下,使用下面这个方法,效果挺好的!能满足我的需求!
从GridView派生出一个自定义的类(MyGridView),重载其测量方法(onMeasure):

复制代码
 1 /** 
 2  * @Type: MyGridView 
 3  * 让GridView可以做ScrollView的子控件,但尺寸不会减小 
 4  */  
 5 public class MyGridView extends GridView {  
 6       
 7     public MyGridView(Context context) {    
 8         super(context);    
 9     }    
10       
11     public MyGridView(Context context, AttributeSet attrs) {    
12         super(context, attrs);    
13     }    
14       
15     public MyGridView(Context context, AttributeSet attrs, int defStyle) {    
16         super(context, attrs, defStyle);    
17     }    
18     
19     @Override    
20     public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {    
21     
22         int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,    
23                 MeasureSpec.AT_MOST);    
24         super.onMeasure(widthMeasureSpec, expandSpec);    
25     }      
26 }    
复制代码

 

在XML中,将原来使用系统的GridView,替换成自定义的MyGridView即可:

复制代码
 1 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
 2     xmlns:tools="http://schemas.android.com/tools"  
 3     android:layout_width="fill_parent"  
 4     android:layout_height="wrap_content">  
 5 <RelativeLayout   
 6     android:layout_width="wrap_content"  
 7     android:layout_height="wrap_content"  
 8     tools:context=".MainActivity" >  
 9       
10     <com.gaojinshan.MyGridView  
11         android:id="@+id/gv_app1"  
12         android:layout_width="wrap_content"  
13         android:layout_height="wrap_content"  
14         android:horizontalSpacing="0dp"  
15         android:gravity="center"  
16         android:numColumns="4"  
17         android:stretchMode="columnWidth"   
18         android:verticalSpacing="0dip"  
19         />  
20   
21     <com.gaojinshan.MyGridView  
22         android:id="@+id/gv_app2"  
23         android:layout_width="wrap_content"  
24         android:layout_height="wrap_content"  
25         android:layout_below="@id/gv_app1"  
26         android:horizontalSpacing="0dp"  
27         android:gravity="center"  
28         android:numColumns="2"  
29         android:stretchMode="columnWidth"   
30         android:verticalSpacing="0dip"  
31         android:scrollbars="none"  
32         />  
33 </RelativeLayout>  
34 </ScrollView>  
复制代码

 

posted @   (•̀ω•́)y  阅读(345)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示