Я пытаюсь сделать экран с видом, который можно изменить, используя панель просмотра, сдвигая влево или вправо, и используйте скользящий ящик, чтобы сделать панель инструментов внизу, но мой код не работает. Вот XML. Как я могу это исправить?Как использовать раздвижной ящик с панелью просмотра?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="bottom"
android:background="#ffffff">
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/viewPager" />
<SlidingDrawer
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/SlidingDrawer"
android:handle="@+id/slideButton"
android:content="@+id/contentLayout"
android:padding="10dip"
android:orientation="vertical"
android:layout_below="@+id/viewPager">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/slideButton"
android:background="@drawable/closearrow">
</Button>
<LinearLayout
android:layout_width="wrap_content"
android:id="@+id/contentLayout"
android:orientation="vertical"
android:gravity="center"
android:padding="10dip"
android:background="#000000"
android:layout_height="wrap_content">
<Button
android:id="@+id/Button01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFE0"
android:layout_margin="2dp"
android:text="Option1">
</Button>
<Button
android:id="@+id/Button02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFFFE0"
android:layout_margin="2dp"
android:text="Option2"></Button>
<Button android:id="@+id/Button03"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:background="#FFFFE0"
android:text="Option3">
</Button>
<Button android:id="@+id/Button04"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:background="#FFFFE0"
android:text="Option4">
</Button>
</LinearLayout>
</SlidingDrawer>
</RelativeLayout>