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

时间:2015-04-09 12:53:35

标签: android android-layout

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

2 个答案:

答案 0 :(得分:0)

通过此覆盖您的GridView Touch,但请记住,此后您无法滚动网格视图

Yourgridview.setOnTouchListener(new OnTouchListener(){

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

});

答案 1 :(得分:0)

试试这个:

<?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>