0

我有一个问题列表,每个项目都有一个是和否复选框。这是使用抽象类(因为有很多列表)、子类和数组适配器创建的。这是创建列表的抽象类代码:

protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  List<Question> questions = getQuestions(1L);
  setContentView(R.layout.activity_questions);
  items = (ListView) findViewById(R.id.items);
  adapter = new QuestionsAdapter(this, getCurrentContext(), questions, 1L, getDbData());
  items.setAdapter(adapter);
 }

这是问题适配器:

public View getView(int position, final View convertView, ViewGroup parent) {
  View row = convertView;
  if (row == null) {
    LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    row = inflater.inflate(R.layout.row_questions, parent, false);
    holder = new QuestionHolder();
    holder.question = (TextView) row.findViewById(R.id.question);
    holder.yes = (CheckBox) row.findViewById(R.id.yes);
    holder.no = (CheckBox) row.findViewById(R.id.no);
    row.setTag(holder);
  } else {
    holder = (QuestionHolder) row.getTag();
  }
  Question question = questions.get(position);
  holder.question.setText(question.getQuestion());    
  setStateCheckboxes(holder, question);
  holder.yes.setTag(getItem(position));
  holder.no.setTag(getItem(position));
  holder.yes.setOnCheckedChangeListener(listen);
  holder.no.setOnCheckedChangeListener(listen);
  return row;
}

我必须创建持有者才能拥有带有复选框的列表视图。到目前为止,一切正常。

然后,我对列表中的每个元素都有一个视图。这是非常基本的:

public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  dbData = new DbData(this);
  this.setContentView(R.layout.single_question);
  CheckBox yes = (CheckBox) findViewById(R.id.yes_single);
  CheckBox no = (CheckBox) findViewById(R.id.no_single);
}

在此视图中,我可以更改复选框的状态。这种变化反映在db中,但是当我返回主列表时,它只反映在刷新上。我已经覆盖了 onRestart():

@Override
protected void onRestart() {
  // Change this
  questions = getQuestions(1L);
  adapter.notifyDataSetChanged();
  super.onRestart();
}

适配器正在从问题 ArrayList 中提取数据,因此我重新轮询它并通知适配器数据已更改,但这不会改变我的观点。如果我刷新视图,则所有内容的当前状态都会更新。我知道这是一个很长的问题,但任何帮助将不胜感激。

4

1 回答 1

0

使用 onResume() 方法调用 notifyDataSetChanged。

您将需要代码来管理适配器是否已创建。您不想在此过程中过早调用它,否则您会冒异常的风险。

通常,我通过负责初始化适配器并将其添加到列表视图的方法来执行此操作,这使得无论活动/片段是第一次启动还是从另一个活动返回(例如通过后退按钮),以及避免重新创建适配器或替换列表视图上的现有适配器。

在您自己的代码之前调用 super.onRestart() 也更好。

于 2013-07-10T11:31:30.013 回答