フラグメントであるグリッドビューの下にスライド式の引き出しが必要です。画面サイズに応じて 2 つの xml バージョンがあります。大きい画面には 2 つのフラグメントが並んでいて、小さい画面には 1 つのフラグメントがあります。フラグメントの下に引き出しが必要ですが、グリッドの下部要素が非表示になります。いくつかの指針と助けが大いに感謝されます。
これは私が得るものです:
私はすでにあらゆる種類のバリエーションを試しましたが、これは私が現在持っているものです:
<?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>
2 番目のレイアウトは基本的に同じで、最初のフラグメントの右側に 2 番目のフラグメントがあるだけです。