標準のpngの代わりにandroid:src = "@ drawable / some_xml_file"を設定しているImageViewオブジェクトがありますが、ここの最初の行にあるように、常にドローアブルをレンダリングするとは限らないようです(これも断続的に発生します)他の行にも):代替テキスト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" />