gpt4 book ai didi

android - 滑动抽屉背景色

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:58:19 24 4
gpt4 key购买 nike

我目前正在开发一个 android 项目并使用 SlidingDrawer,但我在更改背景颜色时遇到了问题。

默认情况下,SlidingDrawer 看起来是透明的,因此当它在内容上滑动时,由于主屏幕显示在下方,因此很难阅读 slidingdrawer 的内容。

我想将背景颜色更改为黑色,但由于某种原因,这会更改主要内容的背景颜色,因此您看不到任何内容,只能看到滑动抽屉向上推屏幕时的内容.

下面是我用来生成滑动抽屉的代码

<SlidingDrawer 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/drawer"
android:handle="@+id/handle"
android:content="@+id/content"
android:background="@color/black">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/handle"
android:src="@drawable/ic_launcher"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I am a sliding drawer - Hello World"/>
</LinearLayout>
</SlidingDrawer>

感谢您提供的任何帮助。

最佳答案

为具有如下内容 ID 的 LinearLayout 提供背景:

<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/content"
android:background="#000">

关于android - 滑动抽屉背景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8682280/

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