私はリストビューstを使用しています。すべての行にはイメージビューとフローレイアウトがあり、ベースアダプターを拡張し、ハッシュマップの配列を送信します。それぞれに画像パスと単語のリストがあります。エントリをスクロールするたびに「葉」 " 画面を下に移動すると、エントリが画面に「戻ってきます」そして再び、フローレイアウトの単語は「ドクドク」になりました)...理由がわかりません... =(
私はここからフローレイアウト+バブルを取りました - http://www.superliminal.com/sources/FlowLayout.java.html http://nishantvnair.wordpress.com/2010/09/28/android-create-bubble-いいね-facebook/
ここで@MCeleyの答えからリストに画像をロードするデコード非同期タスク - Androidの画像を含む大きなListView
それが私のgetViewコードです-
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView = null;
FlowLayout flowLayout = null;
if (convertView == null) {
convertView = layoutInflater.inflate(R.layout.list_item, null);
imageView = (ImageView) convertView.findViewById(R.id.list_image);
flowLayout = (FlowLayout) convertView.findViewById(R.id.flow_tags);
} else {
imageView = (ImageView) convertView.findViewById(R.id.list_image);
flowLayout = (FlowLayout) convertView.findViewById(R.id.flow_tags);
DecodeTask task = (DecodeTask) imageView.getTag(R.id.list_image);
if (task != null) {
task.cancel(true);
}
}
HashMap<String, List<String>> photos = new HashMap<String, List<String>>();
photos = data.get(position);
imageView.setImageBitmap(null);
DecodeTask task = new DecodeTask(imageView);
task.execute(photos.get(DatabaseHandler.KEY_PATH).get(0));
imageView.setTag(R.id.list_image, task);
ArrayList<String> subjects = new ArrayList<String>();
int size = photos.get(DatabaseHandler.KEY_TAGS).size();
for (int i = 0; i < size; i++) {
String name = String.format("name - %s ",
photos.get(DatabaseHandler.KEY_TAGS).get(i));
Bubble.getBubble(name, flowLayout, subjects, activity,
photos.get(DatabaseHandler.KEY_PATH).get(0), false, false);
}
return convertView;
}
事前にTNX..!