1

現在、アプリでフラグメントを使用しており、リストビューがあります。スクロールすると黒くなり、どうやって取り除くのかわからない。

このページをチェックアウトしました: スクロールすると背景のListViewが黒くなります

これはうまくいきませんでした...他のアイデアはありますか?(画像とテキストを組み合わせたリストビューです)

4

4 に答える 4

7

このように設定できます

    <ListView 
         android:id="@+id/list01" 
         android:layout_height="fill_parent"
         android:layout_width="fill_parent"
         android:focusable="true"    
         android:fastScrollEnabled="true"
         android:focusableInTouchMode="true"
         android:transcriptMode="normal"
         android:cacheColorHint="@android:color/transparent"
         android:scrollingCache="false" 

         />

またはこのように設定できます

list.getDrawingCache(false);
list.setScrollingCacheEnabled(false);  
list.setCacheColorHint(Color.TRANSPARENT);
于 2012-08-09T08:54:55.467 に答える
5

または、属性を設定することもできます

android:cacheColorHint="@android:color/transparent"
android:scrollingCache="false"

リスト ビューで。

于 2012-07-03T13:08:04.353 に答える
1
<ListView
            android:id="@+id/listtask"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_marginTop="15dp"
            android:background="@drawable/back"
            android:divider="@drawable/divider"
            android:dividerHeight="1dp"
            android:padding="5dp"
            android:cacheColorHint="@android:color/transparent"
            android:scrollingCache="false" >
        </ListView>
于 2012-07-03T08:50:18.553 に答える