ListAdapter。 getView从View(convertView)返回项目的错误链接

时间:2019-05-22 19:41:08

标签: android listview android-arrayadapter listadapter getview

我在ListAdapter(ArrayAdapter)上遇到了一个奇怪的错误。我解决了这个问题,但是我认为任何人都可能遇到问题,因此我决定写我的解决方案。

我的任务:ListView,它具有每个项目的onclick事件。最后选择的项目(其_id val)保存到SharedPreferences中。重新打开活动后,需要加载最后选择的项目位置(在SharedPreferences中使用保存的_id)。

问题:加载组件后,我有更多次被称为getView,且具有其他视图的值(空值或非null)和位置(位置值多次为0)。但是主要的问题是从选定的项目获取链接。

我的代码:

public class ListAdapter extends ArrayAdapter<String[]> {
private final LayoutInflater mInflater;
private final ViewBinderHelper binderHelper;
public ViewHolder beforeHolder = null;

public ListAdapter(Context context, List<String[]> objects) {
    super(context, R.layout.lv_item, objects);
    mInflater = LayoutInflater.from(context);
    binderHelper = new ViewBinderHelper();
}

public  int a = 0;
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
    final ViewHolder holder;

    int i = Integer.valueOf(ProgramActivity.dirNames.get(position));
    if (convertView == null) {
        convertView = mInflater.inflate(R.layout.lv_item, parent, false);

        holder = new ViewHolder();
        holder.swipeLayout = (SwipeRevealLayout) convertView.findViewById(R.id.swipe_layout);
        holder.frontView = convertView.findViewById(R.id.front_layout);
        holder.textView = (TextView) convertView.findViewById(R.id.text);


        holder.frontView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if (backStack.size() > 0) {
                    Toast.makeText(getContext(), "У вас уже выбрана последовательность программ", Toast.LENGTH_SHORT).show();
                    return;
                }

                if (beforeHolder != null) {
                    beforeHolder.frontView.setBackgroundResource(R.color.colorAccent);
                }
                else {
                    //ProgramActivity.adapter.notifyDataSetChanged();
                }

                view.setBackgroundResource(R.color.holo_green_light);

                SharedPreferences.Editor ed = MainActivity.sPref.edit();
                ed.putInt("idProgram",holder.idProgram);
                ed.commit();

                MainActivity.idProgram = holder.idProgram;

                beforeHolder = holder;
            }
        });


        convertView.setTag(holder);

    } else {
        holder = (ViewHolder) convertView.getTag();
    }

    final String[] item = getItem(position);
    if (item != null) {
        holder.idProgram = i;
        if (i == MainActivity.idProgram) {
            holder.frontView.setBackgroundResource(R.color.holo_green_light);
            beforeHolder = holder;
        } else {
            holder.frontView.setBackgroundResource(R.color.colorAccent);
        }

        binderHelper.bind(holder.swipeLayout, item[1]);

        holder.textView.setText(item[1]);
    }

    return convertView;
}

/**
 * Only if you need to restore open/close state when the orientation is changed.
 * Call this method in {@link android.app.Activity#onSaveInstanceState(Bundle)}
 */
public void saveStates(Bundle outState) {
    binderHelper.saveStates(outState);
}

/**
 * Only if you need to restore open/close state when the orientation is changed.
 * Call this method in {@link android.app.Activity#onRestoreInstanceState(Bundle)}
 */
public void restoreStates(Bundle inState) {
    binderHelper.restoreStates(inState);
}

private class ViewHolder {
    SwipeRevealLayout swipeLayout;
    View frontView;
    TextView textView;
    int idProgram;
}
}

beforeHolder =持有人;尽管代码正确并且条件(i == MainActivity.idProgram)处于打开状态,但链接错误,仅适用于一个选项。但是在我单击其他项目并运行了代码行beforeHolder.frontView.setBackgroundResource(R.color.colorAccent);之后,项目颜色未更改。

1 个答案:

答案 0 :(得分:0)

花了几天的时间,我找到了摆脱困境的出路。  我知道该错误是在活动布局中。我将参数layout_height="wrap_content"设置为ListView,并且因为该getView运行了更多次(我多次添加了相同的组件,因为它在添加过程中正在改变其大小)。

首先我添加了行

ProgramActivity.adapter.notifyDataSetChanged();

(在代码中被注释掉了。)并将beforeHolder = holder;删除为条件(i == MainActivity.idProgram),但是第一次单击时,此解决方案的延迟约为1秒。

最喜欢的解决方案是将layout_height更改为fill_parent。最后,我想说这是某种错误,即使使用wrap_content,beforeHolder变量也应具有有效的引用。