关闭侧抽屉将UI在主布局中向上移动

时间:2015-03-11 05:20:29

标签: android-fragments android-viewpager scrollview

我在主要布局中使用此UI并且我有侧抽屉但是当我打开然后关闭侧抽屉然后UI向上移动并隐藏视图寻呼机然后我必须手动向上滚动以查看视图时会发生什么寻呼机。这是在我关闭侧抽屉后发生的。请指导我解决这个问题..

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:myfont="http://schemas.android.com/apk/res/com.itw.b2b.vastradeal"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/White"
    tools:context="com.itw.b2b.vastradeal.fragment.HomeFragment"
    >

    <ScrollView
        android:id="@+id/scrollviewHome"
        android:scrollbars="none"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="-5dp"
        android:layout_marginBottom="10dp"
        android:fillViewport="true"
      >

        <RelativeLayout
            android:id="@+id/mainLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/White">

            <RelativeLayout
                android:id="@+id/top"
                android:layout_width="match_parent"
                android:layout_height="180dp">

                <android.support.v4.view.ViewPager
                    android:id="@+id/viewpager"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_marginTop="15dp"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp"
                    />

                <com.viewpagerindicator.CirclePageIndicator
                    android:id="@+id/titles"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_marginBottom="10dp"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp"
                    />
            </RelativeLayout>
 <RelativeLayout
                android:id="@+id/middle_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/lable_Category_Layout">

                <GridView
                    android:id="@+id/custom_grid_home"
                    android:scrollbars="none"
                    android:isScrollContainer="false"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/White"
                    android:horizontalSpacing="5dp"
                    android:numColumns="2"
                    android:columnWidth="160dp"
                    android:layout_marginLeft="5dp"
                    android:padding="5dp"
                    android:verticalSpacing="10dp"
                    android:layout_alignParentBottom="true"
                    android:paddingBottom="10dp"
                    />

            </RelativeLayout>

0 个答案:

没有答案