自定义ArrayAdapter getView提供了错误的位置

发布于 2024-11-07 18:13:31 字数 974 浏览 2 评论 0原文

因此,我收到错误,因为我的 Custom ArrayAdapter getView 方法提供的位置超出了列表中的项目数。例如,当我有一项时,当我返回此活动后,它会返回位置 1。

编辑:

private class CustomAdapter extends ArrayAdapter<LinearLayout>{
    public CustomAdapter(Context context, int resources, List<LinearLayout> objects){
        super(context, resources, objects);
    }

    public View getView(int position, View convertView, ViewGroup parent){
        LinearLayout row;

        LayoutInflater mInflater = getLayoutInflater();
        if (convertView == null){
            row = getItem(position);
        }
        else{
            row = (LinearLayout) mInflater.inflate(R.layout.list_row, null);

            TextView name = (TextView) row.findViewById(R.id.text1);
            name.setText(settingList.get(position).name);

            TextView value = (TextView) row.findViewById(R.id.text2);
            value.setText(settingList.get(position).value);
        }

        return row;
    }
}

So I'm getting an error because my Custom ArrayAdapter getView method provides a position that is outside of the number of items in my list. For instance, when I have one item it returns a position of 1 after I return to this activity.

EDIT:

private class CustomAdapter extends ArrayAdapter<LinearLayout>{
    public CustomAdapter(Context context, int resources, List<LinearLayout> objects){
        super(context, resources, objects);
    }

    public View getView(int position, View convertView, ViewGroup parent){
        LinearLayout row;

        LayoutInflater mInflater = getLayoutInflater();
        if (convertView == null){
            row = getItem(position);
        }
        else{
            row = (LinearLayout) mInflater.inflate(R.layout.list_row, null);

            TextView name = (TextView) row.findViewById(R.id.text1);
            name.setText(settingList.get(position).name);

            TextView value = (TextView) row.findViewById(R.id.text2);
            value.setText(settingList.get(position).value);
        }

        return row;
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月打碎记忆 2024-11-14 18:13:31

该位置应基于您在重写的 getCount() 方法中返回的任何内容。你为此做什么?

The position should be based off of whatever you return in your overridden getCount() method. What are you doing for that?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文