0

我想在我的 gridview 下方有一个滑动抽屉,这是一个片段。根据屏幕大小,我有两个 xml 版本。较大的屏幕有两个并排的片段,较小的屏幕有一个片段。在碎片下面我需要有抽屉,但它隐藏了我网格的底部元素。一些指示和帮助将非常受欢迎。
这就是我得到的: 这就是我得到的

我已经尝试了各种变化,这就是我目前拥有的:

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

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

4

1 回答 1

0

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

于 2013-07-06T20:19:15.660 回答