Sliding Drawer使用GridView隐藏Fragment的最后一行

时间:2013-07-06 15:55:45

标签: android android-layout android-fragments relativelayout slidingdrawer

我想在gridview下面有一个滑动抽屉,这是一个片段。我有两个xml版本,具体取决于屏幕大小。较大的屏幕有两个并排的片段,屏幕上有一个片段。在碎片下面我需要有抽屉,但它隐藏了我的网格的底部元素。一些指示和帮助会很受欢迎 这就是我得到的: this is what i get

我已经尝试了各种各样的变化,这就是我真正拥有的:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:background="#ffffff">
    <FrameLayout
            android:id="@+id/fragone"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_marginLeft="0dp"
            android:layout_alignParentTop="true"
            android:layout_marginTop="0dp">
    </FrameLayout>
        <SlidingDrawer
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:content="@+id/content"
                android:handle="@+id/handle"
                android:id="@+id/slidingDrawer"
                android:layout_alignParentBottom="true"
                android:layout_marginLeft="0dp"
                android:layout_marginTop="0dp">
            <LinearLayout
                    android:id="@+id/content"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:padding="10dp"
                    android:background="#000000">

                <ListView android:layout_width="fill_parent"
                          android:layout_height="wrap_content"
                          android:id="@+id/lvDrawer"
                          android:divider="@android:color/transparent"
                          android:dividerHeight="10.0sp" />
            </LinearLayout>

            <ImageButton
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/handle"
                    android:src="@drawable/fav_stern" 
                    android:adjustViewBounds="true"/>
        </SlidingDrawer>

</RelativeLayout>

第二个布局应该基本上只与第一个布局右侧的第二个片段相同。

1 个答案:

答案 0 :(得分:0)

根据处理程序的高度偏移片段的底部。一种方法是使处理程序具有一致的高度并设置底部边距。