0

私はリストビュー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..!

4

2 に答える 2

0

アダプターでこのコードを使用します。null でない場合は行を再利用し、重複した行を削除する必要があります。

 @Override
public View getView(int position, View convertView, ViewGroup parent) {

    // A ViewHolder keeps references to children views to avoid unneccessary
    // calls
    // to findViewById() on each row.
    ViewHolder holder;
    // When convertView is not null, we can reuse it directly, there is no
    // need
    // to reinflate it. We only inflate a new View when the convertView
    // supplied
    // by ListView is null.

    if (convertView == null) {

        convertView = mInflater.inflate(R.layout.sample, null);
        // Creates a ViewHolder and store references to the two children
        // views
        // we want to bind data to.
        holder = new ViewHolder();
        holder.name = (TextView) convertView.findViewById(R.id.text);
        holder.icon = (ImageView) convertView.findViewById(R.id.icon);
        convertView.setTag(holder);
    } else {
        // Get the ViewHolder back to get fast access to the TextView
        // and the ImageView.

        holder = (ViewHolder) convertView.getTag();

    }

    // Bind the data efficiently with the holder.
    holder.name.setText(myElements.get(id));
    holder.icon.setImageBitmap(mIcon1);

    return convertView;
}

static class ViewHolder {
    TextView  name;
    ImageView icon;
}
于 2013-09-10T15:27:08.020 に答える