我有以下模板
<?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));
我失去了边框,我怎么能解决警告而失去边界,主要问题是背景颜色是动态的
答案 0 :(得分:0)
看看这个:http://developer.android.com/guide/topics/resources/drawable-resource.html#LayerList
这是一个drawable,用于组织图层列表中的其他drawable(一个在另一个之上)。有了它,您可以使用其他绘图,如形状,以您想要的方式定义边框和背景。
我现在无法做出完整的答案,但如果你搜索这个,我相信你能做到。当我有更多时间时,如果你还没有找到解决方法,我可以回来帮助你。