0

我有以下模板

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/borders" >

    <RelativeLayout
        android:id="@+id/layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dp">

        <ImageView
            android:id="@+id/category_starred_icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/rating_not_important"
            android:contentDescription="@string/app_name" />

        <TextView
            android:id="@+id/category_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@id/category_starred_icon"
            android:textIsSelectable="false"
            android:textSize="18sp"
            android:paddingLeft="5dp"
            android:paddingTop="5dp"
            android:paddingRight="5dp"
            android:textColor="@android:color/white"
            android:hint="@string/category"  />
    </RelativeLayout>

</LinearLayout>

我收到警告This RelativeLayout layout or its LinearLayout parent is possibly useless; transfer the background attribute to the other view,我想解决它,但我有以下问题我在 LinearLayout 中有一个边框就像一个投影但是当我在我的代码中更改背景颜色时

mLayout.setBackgroundColor(Color.paseColor(mColorString));

我丢失了边框,我如何解决没有边框的警告,主要问题是背景颜色是动态的

4

1 回答 1

0

看看这个:http: //developer.android.com/guide/topics/resources/drawable-resource.html#LayerList

这是一个可绘制对象,可在图层列表中组织其他可绘制对象(一个在另一个之上)。有了它,您可以使用其他可绘制对象,如形状,以您想要的方式定义边框和背景。

我现在无法给出完整的答案,但如果你搜索这个,我相信你可以做到。当我有更多时间时,我可能会回来帮助你,如果你还没有找到解决这个问题的方法。

于 2013-06-21T16:29:35.357 回答