可以绘制和颜色组合在一个android:背景?

时间:2014-08-08 14:07:33

标签: android xml

我的Android应用程序有以下XML文件:

  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="48dp"

        android:background="@color/SlideBackgroundGrey"
        android:background="@drawable/list_selector">
        <ImageView
        android:id="@+id/icon"
        android:layout_width="25dp"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="12dp"
        android:layout_marginRight="12dp"
        android:contentDescription="@string/desc_list_item_icon"
        android:src="@drawable/heart_rate"
        android:layout_centerVertical="true" />

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_toRightOf="@id/icon"
        android:minHeight="?android:attr/listPreferredItemHeightSmall"
        android:textAppearance="?android:attr/textAppearanceListItemSmall"
        android:textColor="@color/White"
        android:gravity="center_vertical"
        android:paddingRight="40dp"/>

    <TextView android:id="@+id/counter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/counter_bg"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="8dp"
        android:textColor="@color/Black"/>

</RelativeLayout>

问题出在第6-7行:

android:background="@color/SlideBackgroundGrey"
android:background="@drawable/list_selector"

它告诉我背景属性是重复的。任何人都可以知道如何结合这两个或如何使背景能够显示我想要的列表和背景颜色?

2 个答案:

答案 0 :(得分:0)

视图只能有一个背景可绘制。如果您指定了颜色,Android会为您创建ColorDrawable

您需要修改list_selector drawable以包含背景颜色(如果它还没有)。

如果list_selector看起来像是XML选择器,那么您需要修改选择器中涉及的所有不同的drawable。

如果drawables是位图,你可以用photoshop来做。如果它们是形状,您可以使用XML文件中<solid>定义中的<shape>标记指定背景颜色。

答案 1 :(得分:0)

您可以使用这样的可绘制图层列表,例如:

<?xml version="1.0" encoding="utf-8"?>

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle" >
            <solid android:color="#7B7979" />
            <corners android:radius="30dp" />

        </shape>
    </item>

    <item>
        <bitmap android:src="@drawable/ic_launcher" />
    </item>
</layer-list>

在drawable文件夹中创建它并将其用作背景属性

修改 这是使用带圆角形背景的图标。