gpt4 book ai didi

android - 滑动抽屉内容与 View 重叠

转载 作者:行者123 更新时间:2023-11-29 22:02:27 24 4
gpt4 key购买 nike

当我点击处理程序时,会弹出滑动抽屉,但它的内容是透明的,我可以看到内容和 ListView 。 ListView 未隐藏。

这是我的布局 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
android:id="@+id/lvq"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>


<SlidingDrawer
android:id="@+id/slidingDrawer1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/lvq"
android:layout_alignTop="@+id/lvq"
android:content="@+id/content"
android:handle="@+id/handle" >

<Button
android:id="@+id/handle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="History" />

<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
</LinearLayout>
</SlidingDrawer>

</RelativeLayout>

提前致谢!

最佳答案

将 SlidingDrawer 放在 ListView 下方。

android:layout_below="@id/lvq"

关于android - 滑动抽屉内容与 View 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11625580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com