带有方形项目的GridView不会在Android 4上滚动

时间:2016-02-28 15:09:45

标签: android gridview

我在这里研究了所有相关问题但仍然无法解决这个问题。 我有一个带定制适配器的GridView。此GridView应显示两列中的方形项。我为项目布局制作了一个SquareLinearLayout类:

order by

GridLayout适配器在这里膨胀视图:

public class SquareLinearLayout extends LinearLayout {
    public SquareLinearLayout(Context context) {
        super(context);
    }

    public SquareLinearLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public SquareLinearLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, widthMeasureSpec);
    }
}

并且项目:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    if (convertView == null) {
        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = inflater.inflate(R.layout.category_entry, parent, false);
    }
    if (convertView != null) {
        ((TextView) convertView.findViewById(R.id.category_name)).setText(getItem(position).Name());
    }
    return convertView;
}

我的布局:

<xxx.SquareLinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">

    <LinearLayout
        android:background="@color/colorPrimaryTransparent"
        android:layout_marginTop="5dp"
        android:layout_marginLeft="5dp"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/category_name"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"/>
    </LinearLayout>
</xxx.SquareLinearLayout>

启动GridView后显示项目6个全尺寸项目和滚动条拇指。然后拇指消失。并且没有任何滚动条,我无法滚动它。我尝试了3列,并获得了15个没有滚动条的可见项目。 仅在Android 4中发生。 Android 5允许滚动。

我做错了什么?

1 个答案:

答案 0 :(得分:0)

确定。我发布了一个问题,然后找到了答案。所以我把它留在这里因为它可能对某人有用。

问题:此GridView放在片段中。并且片段正在加载到包含ScrollView的布局中。所以这个GridView位于ScrollView!

我在这里找到了答案:How to put GridView inside ScrollView

我刚创建了带有不允许触摸拦截的扩展类,现在GridView可以在所有机器上滚动!

public class GridViewScrollable extends GridView {

    /* xxx constructors skiped */

    @Override
    public boolean onTouchEvent(MotionEvent ev){
        if (action == MotionEvent.ACTION_DOWN)
            requestDisallowInterceptTouchEvent(true);
        return super.onTouchEvent(ev);
    }
}

一些补充。此GridViewScrollable类可防止向外滑动抽屉。要解决此问题并停止requestDisallowInterceptTouchEvent传播,我在外部ScrollView之前添加了扩展的LinearLayout。

public class DisallowInterceptBarrier extends LinearLayout {

    // ... constructors skipped

    @Override
    public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) {
        // Stop propagate disallowInterceptTouchEvent here
    }
}

此解决方案还有助于yandex映射webview滚动和缩放...