android解决gridview只显示一半

   gridview在ScrollView中使用 android:layout_height="wrap_content"  发现并没有显示全部,而只是显示了一半。为了解决这个问题,打算重写了GridView。

       

[java]  view plain copy
  1. public class MyGridView extends GridView{  
  2.   
  3.     public MyGridView(Context context, AttributeSet attrs) {       
  4.         super(context, attrs);       
  5.     }       
  6.       
  7.     public MyGridView(Context context) {       
  8.         super(context);       
  9.     }       
  10.       
  11.     public MyGridView(Context context, AttributeSet attrs, int defStyle) {       
  12.         super(context, attrs, defStyle);       
  13.     }       
  14.       
  15.     @Override       
  16.     public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {       
  17.       
  18.         int expandSpec = MeasureSpec.makeMeasureSpec(       
  19.                 Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);       
  20.         super.onMeasure(widthMeasureSpec, expandSpec);       
  21.     }       
  22. }  
在layout文件下

 

[html]  view plain copy
  1. <com.sg.zfcapp.ui.MyGridView  
  2.     android:id="@+id/gv_type"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="wrap_content"  
  5.     android:layout_marginLeft="5dip"  
  6.     android:layout_marginRight="5dip"  
  7.     android:horizontalSpacing="2.5dip"  
  8.     android:numColumns="4"  
  9.     android:verticalSpacing="2.5dip" />  
  10. /LinearLayout>  
如此就可以解决Gridview只显示一半的问题

你可能感兴趣的:(android解决gridview只显示一半)