我有一个问题列表,每个项目都有一个是和否复选框。这是使用抽象类(因为有很多列表)、子类和数组适配器创建的。这是创建列表的抽象类代码:
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 中提取数据,因此我重新轮询它并通知适配器数据已更改,但这不会改变我的观点。如果我刷新视图,则所有内容的当前状态都会更新。我知道这是一个很长的问题,但任何帮助将不胜感激。