带有drawable的Android ImageView并不总是渲染

时间:2010-06-22 21:20:19

标签: android listview imageview drawable

我有一个ImageView对象,我正在设置android:src =“@ drawable / some_xml_file”而不是标准的png,它似乎并不总是渲染drawable,正如你在第一行看到的那样(它也会在其他行中间歇性地发生):alt text http://www.freeimagehosting.net/uploads/d09b549a9d.jpg

我试过设置src& background属性但它们都具有相同的效果。我的列表视图行项目中的源代码是:

<ImageView android:id="@id/action_button" android:background="@drawable/action_box"
    android:layout_width="25dip" android:layout_height="25dip" 
    android:layout_alignParentRight="true" android:layout_marginTop="10dip" />

然后我的res / drawable / action_box.xml是这样的:

<?xml version="1.0" encoding="UTF-8"?>

    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
       <gradient

            android:startColor="#81c557"
            android:endColor="#539942" 
            android:angle="270"/>
        <stroke android:width="1dip"  android:color="#a8d78a"  />

1 个答案:

答案 0 :(得分:0)

我确实解决了这个问题,问题与getView()方法中的条件有关。我基本上了解到,当您设置可见性/宽度等时,您应该总是明确地处理所有情况。