解决方案:自定义GridView:
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); } //该自定义控件只是重写了GridView的onMeasure方法,使其不会出现滚动条, // ScrollView嵌套ListView也是同样的道理,不再赘述。 @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, expandSpec); } }在布局中调用:
<com.com.jiaojiao.utils.MyGridView android:gravity="left" android:background="#fff" android:id="@+id/act_action_gridView" android:verticalSpacing="5dp" android:horizontalSpacing="15dp" android:layout_width="match_parent" android:layout_height="match_parent" android:numColumns="3" android:scrollbars="none" ></com.com.jiaojiao.utils.MyGridView>