这是我的 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:facebook="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFF">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center">
.................................
.................................
<SlidingDrawer
android:layout_width="fill_parent"
android:id="@+id/SlidingDrawer"
android:handle="@+id/slideButton"
android:content="@+id/contentLayout"
android:padding="10dp"
android:layout_height="150dp">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/slideButton"
android:background="@drawable/action_eating">
</Button>
<LinearLayout
android:layout_width="fill_parent"
android:id="@+id/contentLayout"
android:orientation="vertical"
android:gravity="center"
android:padding="10dp"
android:background="#45454F"
android:layout_height="wrap_content">
<Button
android:id="@+id/history"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/history"
android:textColor="#000000"
android:textSize="20sp" />
</LinearLayout>
</SlidingDrawer>
</LinearLayout>
</ScrollView>
问题是,SlidingDrawer 仍然在我的布局底部(这很好),但它仍然在底部太远(我认为它仍然在我的布局下方 150dp)。当我点击它时,它会打开,但不会在我的布局上翻转,它会保留在我在布局中显示的所有内容之下。但我需要,当我点击它时,将它滑过我的视图。当它关闭时,它应该保持在我的布局下方,离我的布局不太远(比如 150dp)。
对不起,我的英语不好。如果您对理解我所说的内容有任何问题,请告诉我。谢谢你。