带有可绘制背景的视图不会在布局上显示

时间:2015-12-05 14:43:04

标签: java android xml android-listview

我尝试在listView中为行创建蓝色背景,但背景只出现在XML预览中,而不是在我运行应用时。

行布局:

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

    <View android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="@drawable/row_background"
        android:id="@+id/mBackground" />

    ...

</RelativeLayout>

背景布局:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
    <shape
        android:shape="rectangle"
        android:thicknessRatio="9"
        android:useLevel="false" >
        <solid android:color="#FF0000" />

    </shape>
</item>

所有其他视图都正常显示,我尝试了不同的方法在后台文件中绘制反应,但没有它们起作用。 有人可以帮帮我吗。

0 个答案:

没有答案