Android - How to get all items in a Spinner?

早过忘川 提交于 2019-12-05 20:46:39

问题


How do I get all items in a Spinner?

I was having trouble trying to search a way to get all items from a Spinnerbut I was not able to find an elegant solution. The only solution seems to be storing the items list before to add it to the Spinner

Is there another better way to do this?


回答1:


A simple and elegant way to do this is, if you know the objects type that the spinner is storing:

public class User {

    private Integer id;

    private String name;

    /** Getters and Setters **/

    @Override
    public String toString() {
        return name;
    }
}

Given the previous class and a Spinner that contains a list of User you can do the following:

public List<User> retrieveAllItems(Spinner theSpinner) {
    Adapter adapter = theSpinner.getAdapter();
    int n = adapter.getCount();
    List<User> users = new ArrayList<User>(n);
    for (int i = 0; i < n; i++) {
        User user = (User) adapter.getItem(i);
        users.add(user);
    }
    return users;
}

This helped me! I hope it would do it for you!



来源:https://stackoverflow.com/questions/32127374/android-how-to-get-all-items-in-a-spinner

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!