我在线查了几个教程,但认为以下是最好的方法。
我的活动仅包含文字字段(editText
)和列表视图(roomlv
)
列表中包含的对象是RoomCell
个对象
我的班级有以下变数
public class RoomsActivity extends ActionBarActivity {
ListView listview2;
RoomCell[] roomcells = {rc1, rc2, rc3, rc4, rc5, rc6, rc7, rc8, rc9};
//where rc1, rc2, ... are predefined objects
RoomCell[] finalcells = roomcells;
RoomListAdapter rla;
我的onCreate方法如下所示:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_rooms);
listview2 = (ListView) findViewById(R.id.roomlv);
listview2.setClickable(true);
listview2.setOnItemClickListener(onListClick2);
EditText filterText = (EditText) findViewById(R.id.editText);
filterText.addTextChangedListener(filterTextWatcher);
rla = new RoomListAdapter(this, finalcells);
listview2.setAdapter(rla);
}
我的TextWatcher的工作原理如下:
private TextWatcher filterTextWatcher = new TextWatcher() {
public void onTextChanged(CharSequence s, int start, int before,
int count) {
if(s.length()==0){
finalcells = roomcells;
rla.notifyDataSetChanged();
}else{
finalcells = filterList(roomcells, s);
rla.notifyDataSetChanged();
}
}
};
这里为了方便起见省略了其他2个覆盖方法。
filterList()
方法返回已过滤的数组(我相信这工作正常,但如果要求我会粘贴代码)
最后OnClick
代码在这里:
private AdapterView.OnItemClickListener onListClick2 = new AdapterView.OnItemClickListener(){
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
GlobVar.roomtitle = finalcells[position].name;
GlobVar.roomsize = finalcells[position].size;
Intent i = new Intent(RoomsActivity.this, TheRoomActivity.class);
startActivity(i);
}
};
其中为已点击的单元格分配了2个全局变量特定值。
编辑文本字段没有任何区别,单击一个单元格会导致程序崩溃吗?
我无数次查看了我的代码,找不到任何错误。
提前感谢您的帮助。
答案 0 :(得分:3)
您需要致电:
rla = new RoomListAdapter(RoomsActivity.this, finalcells);
listview2.setAdapter(rla);
致电之前:
rla.notifyDataSetChanged();
在onTextChanged
方法中,因为每次您输入EditText