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

3

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

如果我没错的话,我们需要使framelayout的背景完全透明。但是这样做没有效果。

感谢所有的回复,但到目前为止,没有一条回复有效。

进一步澄清,我需要使列表视图下面的背景透明。

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

我需要在活动中更改一些主题吗?

以下是完整的布局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 设为透明。 - Atul O Holic
只是澄清一下,这个问题已经在SO上得到了回答 - 这里。干杯! - irq033
1个回答

7

不确定我是否理解了您的意思,但我会尝试一下。让我们看看。如果我没弄错的话,您无法看到抽屉本身。您所看到的是其中的ListView。因此,为了将其背景设置为透明,您需要做的只是设置

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

将这段代码添加到您的ListView XML中。这将使其完全不可见,但如果您想要透明度和一些颜色,则可以使用此处所接受的答案来选择正确的值。希望这能帮到您。

谢谢,但我需要使ListView下面的屏幕透明。我已经编辑了我的问题以进一步澄清。 - Utsav Gupta

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接