我有以下模板
<?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));
我丢失了边框,我如何解决没有边框的警告,主要问题是背景颜色是动态的