我有一个具有 SimpleCursorAdapter 的应用程序。我可以让数据库表的内容显示在列表中,但是当单击列表中的项目时,我想做一些事情。当我在 Eclipse 中找到源代码并尝试覆盖 clickListener 时,没有什么可以覆盖的。我正在寻找一种像 onListitemClick 这样的覆盖方法。我该怎么做?
Eclipse 还抱怨 onListItemClick 方法,说它必须重写或实现超类型方法。如果我删除 @Override 注释,那么该错误就会出现,列表会显示,但不会因触摸列表中的项目而触发任何事件。
private class MyAdapter extends SimpleCursorAdapter {
public MyAdapter(Context context, int layout, Cursor c, String[] from,
int[] to) {
super(context, layout, c, from, to);
}
@Override
public
View getView(int position, View convertView, ViewGroup parent) {
Log.e(TAG, "inside myadapter getview");
View v = super.getView(position, convertView, parent);
if(v == null)
return null;
Cursor c = (Cursor)getItem(position);
String phoneName = c.getString(c.getColumnIndex(LoginValidate.C_PHONE_NAME));
String phoneNumber = c.getString(c.getColumnIndex(LoginValidate.C_PHONE_NUMBER));
((TextView)v.findViewById(R.id.phonename)).setText(phoneName );
((TextView)v.findViewById(R.id.phonenumber)).setText(phoneNumber);
((TextView)v.findViewById(R.id.phonename)).setTextColor(Color.BLACK);
((TextView)v.findViewById(R.id.phonenumber)).setTextColor(Color.BLACK);
return v;
}
}// end of adapter
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
Log.e(TAG, "clicked an item in list");
}