适配器更新不可见行 [英] Adapter update not visible rows

查看:37
本文介绍了适配器更新不可见行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果您查看此问题从不同方法更新适配器,您将看到此答案https://stackoverflow.com/a/25632407/1270400 此答案仅适用于可见行.但我必须向不可见和可见行添加徽章.@pomber 给了一个提示,但我无法理解.

If you review this question Update adapter from different method you will see this answer https://stackoverflow.com/a/25632407/1270400 This answer works only with visible rows.But I have to add badge to not visible and visible rows.@pomber gave a tip but I can't understand it.

我怎样才能完成这个过程?我需要一个例子.

How can I do this process ? I need an example.

推荐答案

您不应该尝试直接修改列表视图的子元素.相反,修改适配器,以便您根据某些条件显示徽章.

You shouldn't try to modify the child elements of a listview directly. Instead, modify the adapter so that you display the badge based on some condition.

然后,修改适配器的底层数据(并在适配器上调用notifyDatasetChanged()),列表视图将重绘自身.

Then, modifying the underlying data for the adapter (and calling notifyDatasetChanged() on the adapter) and the listview will redraw itself.

例如,将您的适配器视为由 Song 对象列表支持.在 getView() 中,如果 ((Song) get item(position)).isFavourited() 返回 true,您可以显示徽章.

For example, consider your adapter as being backed by a list of Song objects. In getView() you can display the badge if ((Song) get item(position)).isFavourited() returns true.

要显示列表中第 n 首歌曲的徽章,您需要修改列表 (songs.get(n).favourite()) 并调用 adapter.notifyDatasetChanged().

To display the badge for the nth Song in the list, you'd modify the list (songs.get(n).favourite()) and call adapter.notifyDatasetChanged().

使用更详细但并非详尽无遗的示例进行编辑.请注意注释和 TODO:

edit with more detailed, but not exhaustively complete, example. Note the comments and the TODOs:

import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ListAdapter;

import java.util.ArrayList;
import java.util.List;

public class Test  {

    public static void test() {
        List<Song> songsList = new ArrayList<Song>();
        songsList.add(new Song("Generic Song Title", false));
        songsList.add(new Song("Another Song Title", false));
        songsList.add(new Song("A Third Song Title", false));
        Songs songs = new Songs(songsList);

        ListAdapter songsAdapter = new SongsAdapter(songs);
        // TODO: ListView.setAdapter(songsAdapter)

        /*
        When you want to change the visibility on a badge of a given song,
        do NOT modify the view by trying to access it from the ListView
        using ListView.getChildAt(int).

        Update the data, and give it to your adapter, as follows:
         */
        List<Song> anotherSongsListWithFavourites = new ArrayList<Song>();
        songsList.add(new Song("Generic Song Title", false));
        songsList.add(new Song("Another Song Title", true));
        songsList.add(new Song("A Third Song Title", true));
        Songs modifiedSongs = new Songs(anotherSongsListWithFavourites);
        ((SongsAdapter) songsAdapter).updateSongs(modifiedSongs);
    }

    public static void test2_updateExistingSongCollection() {
        List<Song> songsList = new ArrayList<Song>();
        songsList.add(new Song("Generic Song Title", false));
        songsList.add(new Song("Another Song Title", false));
        songsList.add(new Song("A Third Song Title", false));
        Songs songs = new Songs(songsList);

        ListAdapter songsAdapter = new SongsAdapter(songs);
        // TODO: ListView.setAdapter(songsAdapter)

        /*
        Now we update the existing Songs object. The adapter's reference is 
        still pointing to it, so that data will change too, but the adapter
        won't know. This means the data will not immediately update on screen,
        unless the user scrolls up/down OR unless we tell the adapter to
        call `notifyDatasetChanged()` which we'd have to expose another method
        for because it's a `protected` method (not shown).
         */
        songs.get(0).isFavourite = true;
    }

    private static class Song {

        public final String songName;
        // not final because we're grossly modifying this for the example in test2
        public boolean isFavourite;

        private Song(String songName, boolean isFavourite) {
            this.songName = songName;
            this.isFavourite = isFavourite;
        }

    }

    private static class Songs {

        private final List<Song> songs;

        public Songs(List<Song> songs) {
            this.songs = songs;
        }

        public Song get(int position) {
            return songs.get(position);
        }

        public int size() {
            return songs.size();
        }

    }

    private static class SongsAdapter extends BaseAdapter {

        private Songs songs;

        private SongsAdapter(Songs songs) {
            this.songs = songs;
        }

        /*
            Update the dataset, and then pass the new data to the adapter.
            You could update an individual song, but I wouldn't recommmend it.
            This adapter's responsibility is to take a Songs object map each one
            to a View - it shouldn't have to deal with MODIFYING the dataset.

            Note, the `notifyDataSetChanged()`. This tells the ListView to ask
            the adapter for new views (with updated data).
         */
        public void updateSongs(Songs songs) {
            this.songs = songs;
            notifyDataSetChanged();
        }

        @Override
        public int getCount() {
            return songs.size();
        }

        @Override
        public Song getItem(int position) {
            return songs.get(position);
        }

        @Override
        public long getItemId(int position) {
            // we won't support stable IDs for this example
            return 0;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View view = convertView;
            if (view == null) {
                view = createNewView();
            }
            update(view, songs.get(position));
            return view;
        }

        private View createNewView() {
            // TODO: create a new instance of your view and return it
            return null;
        }

        private void update(View view, Song song) {
            // TODO: update the rest of the view
            if (song.isFavourite) {
                // TODO: show badge on view
            } else {
                // TODO: hide the badge on view
            }
        }

    }

}

这篇关于适配器更新不可见行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆