我有一个listview
,它显示得很好,但是当我单击“编辑”操作按钮时,我希望listview
使用不同的布局资源,以便按钮显示在列表中的每个项目旁边。
layout before: listitem_routine
layout I want after "edit" action button clicked: listitem_routine_edit
这是我的有效代码:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_routines);
datasource = new RoutinesDataSource(this);
datasource.open();
List<Routine> values = datasource.getAllRoutines();
ArrayAdapter<Routine> adapter = new ArrayAdapter<Routine>(this,
R.layout.listitem_routine, R.id.listitem_routine_name, values);
setListAdapter(adapter);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
ArrayAdapter<Routine> adapter = (ArrayAdapter<Routine>) getListAdapter();
// Handle item selection
switch (item.getItemId()) {
case R.id.button_routines_edit:
// change the list view adapter resource layout to *_edit
// hide this button and show the "done editing (checkmark)" button
return true;
default:
return super.onOptionsItemSelected(item);
}
}
我知道这种情况很R.id.button_routines_edit
有效,因为我在点击它时做了吐司。很好吃。我从那以后删除了该代码...
但是有什么方法,我将如何在R.id.button_routines_edit
单击时更改布局资源?所有代码都在那里,我只是不知道如何更改布局资源,然后显然更新listview
以显示新的行布局......