0

標準の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"  />

4

1 に答える 1

0

私はこれを解決しましたが、問題は getView() メソッドの条件に関連していました。可視性/幅などを設定するときは、常にすべてのケースを明示的に処理する必要があるというハードウェイを基本的に学びました.

于 2010-08-05T18:05:17.057 に答える