0

我有一个 DrawerLayout,它运行良好。我想让这个设计以橙色突出显示。ListView 上的选中项将具有此背景效果。什么是实现这一目标的好方法。它是背景图像还是覆盖的透明图像item?谢谢

我还找到了这个教程。我的帖子的目的是找到一个好的解决方案。

在此处输入图像描述

不知道如何在我的 xml 上执行此操作。

<?xml version="1.0" encoding="utf-8"?>
<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:layout_gravity="start"
    >

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </FrameLayout>

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>

</android.support.v4.widget.DrawerLayout>
4

1 回答 1

0

listView 的透明背景和具有所需列表项效果的 png 图像将为您完成。例如:

     <ListView
       android:id="@+id/list"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:background="@null" />

然后你的 list_item 的布局应该有一个具有所需效果的 png 作为背景。例如:

    <LinearLayout
      android:id="@+id/list_item_parent_layout"
      android:layout_height = "wrap_content"
      android:layout_width ="wrap_content"
      android:background ="@drawable/desired_png" >

      <!-- place what ever views you want  --> 

   </LinearLayout> 
于 2013-08-13T09:20:08.290 回答