0
某些條目我想通過下面的代碼禁用ListView中
public class VSsimpleCursorAdapter extends SimpleCursorAdapter implements
Filterable {
public VSsimpleCursorAdapter(Context context, int layout, Cursor c,
String[] from, int[] to) {
super(context, layout, c, from, to);
}
public boolean areAllItemsEnabled() {
return false;
}
public boolean isEnabled(int position) {
String s = "mystring"
if (/*compare an entry in cursor with s*/){
return false;
} else
return true;
}
}
的問題是isEnabled
只有一個參數位置可以禁用在我的ListView的某些項目。如何使用Curser
用於設置isEnabled
中的Adapter
?
你是否必須禁用某些行? – SALMAN 2012-03-30 21:13:28
@SALMAN是的,「ListView」的某些行。 – 2012-03-30 21:14:39