使用Image for DrawerLayout背景

时间:2014-11-19 15:53:10

标签: android android-layout

我在网上和这里搜索,但我找不到任何有用的答案:“如何将图像设置为我的NavigationDrawer的ListView的背景?”

问题是我的ListView的背景不是“纯色”(例如#aabbcc),DrawerLayout没有显示。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
    <android.support.v4.widget.DrawerLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:id="@+id/drawer_layout">

        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
        <!-- The navigation drawer -->
        <ListView android:id="@+id/left_drawer"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="#aabbcc"
            android:layout_gravity="start"
            android:choiceMode="singleChoice"
            android:divider="@android:color/transparent"
            android:dividerHeight="0dp"
             />        
    [... Rest of main layout ...]

如果我将android:background="#aabbcc"更改为android:background="@drawable/menu_bg",我的应用屏幕会变灰并且抽屉不显示。

解决方案I(尝试但不起作用(相同结果): DrawerLayout background for ListView Drawer layout has overridden the background

是否可以在NavigationDrawer中设置图像而不是单一颜色?

感谢。

1 个答案:

答案 0 :(得分:2)

如何将抽屉设为RelativeLayout并在ImageView下方添加ListView

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:id="@+id/drawer_layout">

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- Your main layout -->
</FrameLayout>

<RelativeLayout
    android:layout_width="300dp"
    android:layout_height="match_parent"
    android:layout_gravity="start">
    <!-- The navigation drawer -->
    <ImageView
        android:id="@+id/drawer_bg"
        android:src="@drawable/img2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <ListView
        android:id="@+id/drawer_list"
        android:background="@null"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>