Scrollview在内容后滚动

时间:2017-02-15 12:20:11

标签: android android-scrollview

在我的应用程序中,我使用Expandable Height GridView(EHGV)显示一些项目。在EHGV之上有寻呼机布局,寻呼机布局和EHGV都在滚动视图内。我的问题是当我向下滚动页面时更改屏幕方向后,页面将在内容之后滚动(如附图所示)。

enter image description here

第一次启动页面时,滚动工作正常,但在方向后,滚动视图会滚动更多。请给我一个解决方案。

这是我的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<RelativeLayout
    android:id="@+id/mainlayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ProgressBar
        android:id="@+id/img_progressbar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />


    <com.android.volley.toolbox.NetworkImageView
        android:id="@+id/background"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_centerInParent="true"
        android:scaleType="centerCrop" />

    <ImageView
        android:id="@+id/big_background"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_centerInParent="true"
        android:scaleType="centerCrop" />

    <com.xyz.xyz.ObservableScrollView
        android:id="@+id/scrollview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <RelativeLayout
            android:id="@+id/layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <RelativeLayout
                android:id="@+id/container"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <RelativeLayout
                    android:id="@+id/pager_layout"
                    android:layout_width="match_parent"
                    android:layout_height="200dp"
                    android:focusable="true"
                    android:focusableInTouchMode="true">

                    <android.support.v4.view.ViewPager
                        android:id="@+id/images_pager"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:fitsSystemWindows="true"
                        tools:listitem="@layout/dashboard_grid_banner_item" />

                    <LinearLayout
                        android:id="@+id/image_count"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_alignParentBottom="true"
                        android:layout_marginBottom="20dp"
                        android:background="#00000000"
                        android:gravity="center"
                        android:orientation="horizontal">

                    </LinearLayout>
                </RelativeLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_below="@+id/pager_layout">

                    <com.xyz.xyz.ExpandableHeightGridView
                        android:id="@+id/grid_two"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_margin="26dp"
                        android:fadingEdge="none"
                        android:gravity="center"
                        android:horizontalSpacing="26dp"
                        android:listSelector="@android:color/transparent"
                        android:numColumns="2"
                        android:overScrollMode="never"
                        android:scrollbars="none"
                        android:stretchMode="columnWidth"
                        android:verticalSpacing="26dp" />
                </RelativeLayout>

            </RelativeLayout>
        </RelativeLayout>
    </com.thoughtripples.mandmdemo.ObservableScrollView>

</RelativeLayout>

<include layout="@layout/gradient_header" />

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:minHeight="?attr/actionBarSize"
    app:popupTheme="@style/Theme.AppCompat.Light.DarkActionBar"
    app:theme="@style/Toolbar" />
</android.support.design.widget.CoordinatorLayout>

1 个答案:

答案 0 :(得分:0)

设置equals != same