2

我正在使用基于 Lollipop 的 avd 开发我的应用程序,其中我使用 SetBackgroundResource 使用自定义可绘制对象(图层列表)设置列表视图行的背景。它工作得很好。

LinearLayout xml 行具有默认定义的蓝色背景。

Jelly Bean 和 Kit Kat,使用 SetBackgroundResource 删除默认蓝色,但不会将其设置为请求的背景可绘制对象。在将 minsdk 从 15 更改为 16 后,我也尝试了 SetBackground。

仍然没有喜悦。

((LinearLayout)v.getParent()).setBackgroundResource(R.drawable.border_purple);

我也试过;

((LinearLayout)v.getParent()).setBackground(ContextCompat.getDrawable(context,R.drawable.border_orange));

行 xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent" android:layout_width="match_parent"
android:orientation="vertical"
android:background="@drawable/border_blue"
android:padding="12dp"
android:layout_marginBottom="16dp"
android:id="@+id/layout_row">
<TextView
    android:layout_height="wrap_content"
    android:id="@+id/item_title"
    android:text=""
    android:layout_width="match_parent"
    android:textSize="20sp"
    android:textColor="@color/primary_dark_material_light"
    android:background="#FFFFFF"/>
<View
    android:layout_width="match_parent"
    android:layout_height="2px"
    android:background="#D3DFE3" />
<TextView
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:id="@+id/item_byline"
    android:text=""
    android:background="#FFFFFF"/>
</LinearLayout>
4

1 回答 1

0

经过进一步调查,它正在工作,但它从 LinearLayout 中删除了填充,因此它似乎没有工作。我相信它也从图层列表中删除了填充。

于 2015-09-26T13:12:26.750 回答