我想滚动整个屏幕而不仅仅是 Android 中的 GridView?

I want to scroll the whole screen not only the GridView in Android?

我在半屏中使用 GridView,但是当我使用它时,它只会滚动 gridview 部分,我希望当我滚动整个屏幕时不仅滚动 GridView 部分。

用这个覆盖你的 GridView Touch,但记住在这之后你不能滚动你的 gridview

Yourgridview.setOnTouchListener(new OnTouchListener(){

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if(event.getAction() == MotionEvent.ACTION_MOVE){
            return true;
        }
        return false;
    }

});

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <LinearLayout

        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <Button
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Button 1" />

        <Button
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Button 2" />
 </LinearLayout>

</ScrollView>