scrollview嵌套gridview滑动问题

时间:2021-07-12 00:24:24

在开发过程总遇到ScrollView嵌套GridView,由于这两种控件都带有滚动条,当他们碰到一起的时候便会出问题,问题是gridview不滚动,并且只显示两行,为此看了官方文档,谷歌回答滚动里面没必要再加滚动,不符合UI设计。最后还是找到了网上大牛的解决方案才搞定的。

大概写个demo测试了下,还是能嵌套使用的,提前GridView性能好像降低了。如果加载过多,UI加载变的很卡。

主要xml布局为:

  1. <span style="font-family:KaiTi_GB2312;font-size:18px;"><?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:scrollbars="none"
  6. >
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:background="#ff00ff"
  11. android:orientation="vertical" >
  12. <com.test.MyGridView
  13. android:id="@+id/gridview"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. android:background="#00ffff"
  17. android:numColumns="5" />
  18. <LinearLayout
  19. android:layout_width="fill_parent"
  20. android:layout_height="1000dp"
  21. android:background="#ffff00" >
  22. </LinearLayout>
  23. </LinearLayout>
  24. </ScrollView></span>

里面的MyGridView继承了GridView重写了onMeasure方法,代码:

  1. <span style="font-family:KaiTi_GB2312;font-size:18px;">package com.test;
  2. import android.content.Context;
  3. import android.util.AttributeSet;
  4. import android.widget.GridView;
  5. public class MyGridView extends GridView {
  6. public MyGridView(Context context, AttributeSet attrs) {
  7. super(context, attrs);
  8. }
  9. public MyGridView(Context context) {
  10. super(context);
  11. }
  12. public MyGridView(Context context, AttributeSet attrs, int defStyle) {
  13. super(context, attrs, defStyle);
  14. }
  15. //该自定义控件只是重写了GridView的onMeasure方法,使其不会出现滚动条,ScrollView嵌套ListView也是同样的道理,不再赘述。
  16. @Override
  17. public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  18. int expandSpec = MeasureSpec.makeMeasureSpec(
  19. Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
  20. super.onMeasure(widthMeasureSpec, expandSpec);
  21. }
  22. } </span>

通过上面重写的GridView,既可以嵌套到ScrollView里面。