ImageView

Android

android ImageViewのキャッシュ削除

BitmapをPNGで保存し、ImageViewで表示することをしたかったのだが、 画像を何回も同じファイル名アプリの配下に保存して同じファイル名だとキャッシュが残っていて描画されないない。 なのでキャッシュを削除する方法調べたメモです。 ...
Android

android メモ

Missing contentDescription attribute on image Image ViewタグにcontentDescription属性を追加するandroid:contentDescription=”@string/...
Tech

android eclipseの警告 Missing contentDescription attribute on image

Image View タグに contentDescription という属性を設定してやればOK android:contentDescription="@string/hoge"
Tech

ListVeiewにImageViewを利用して画像を表示する。

SimpleAdapter を利用したことや、いろいろな表示方法を説明してありわかりやすい。 SimpleAdapterを継承したもの作成して表示をしている。 画像URLからBitmapを作成して表示している。