gpt4 book ai didi

android - 如何设置抽屉导航背景的透明度?

转载 作者:太空宇宙 更新时间:2023-11-03 12:34:32 28 4
gpt4 key购买 nike

我需要能够将背景设置为完全透明。之前似乎没有人尝试过。请帮忙。

如果我是对的,我们需要让 framelayout backgrund 完全透明。但是这样做没有任何效果。

感谢您的所有回复,但到目前为止,它们似乎都不起作用。

为了进一步说明,我需要将 ListView 下方的背景设为透明。

也就是说,当抽屉完全打开时。下面的 Activity 中有一个部分屏幕是可见的。它显示为模糊的灰色,并显示一些文本。我需要它完全可见。

我需要更改 Activity 中的某些主题吗?

下面是完整的布局xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/navDraweLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:orientation="vertical" >

<RelativeLayout
android:id="@+id/headerLayout"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/headerBlue"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="10dp" >

<Button
android:id="@+id/drawer_btn"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_alignParentLeft="true"
android:background="@color/logoutBtnBlue"
android:onClick="drawerBtnClicked"
android:padding="5dp"
android:textColor="@color/white" />

<TextView
android:id="@+id/headerText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="PeepApp"
android:textColor="@color/white"
android:textSize="25dp" />

<Button
android:id="@+id/logout_btn"
android:layout_width="wrap_content"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:background="@color/logoutBtnBlue"
android:onClick="logoutBtnClicked"
android:padding="5dp"
android:text="Logout"
android:textColor="@color/white" />
</RelativeLayout>

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="1"
android:background="@android:color/transparent"
>

<FrameLayout
android:id="@+id/content_frame"
android:alpha="0.3"
android:background="#00000000"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<!--
android:layout_gravity="start" tells DrawerLayout to treat
this as a sliding drawer on the left side for left-to-right
languages and on the right side for right-to-left languages.
The drawer is given a fixed width in dp and extends the full height of
the container. A solid background is used for contrast
with the content view.
-->

<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/logoutBtnBlue"
android:choiceMode="singleChoice"
android:divider="@android:color/white"
android:dividerHeight="1dp" />
</android.support.v4.widget.DrawerLayout>

最佳答案

不确定我是否理解你的意思,我会试一试。让我们来看看。如果我没记错的话,你是看不到抽屉本身的。你看到的是里面的ListView。因此,为了将其背景设置为透明,您需要做的就是设置

android:background="@android:color/transparent"

到您的 ListView XML。

这将使它完全不可见,但如果你想要一些颜色的透明度,你可以使用接受的答案 here选择正确的值。

希望这对您有所帮助。

关于android - 如何设置抽屉导航背景的透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23808398/

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