我是 Android 和 Java 编程的新手。我有一个实现自定义光标适配器的类。问题是我需要能够访问侦听器内游标适配器中的一些信息。见下文:
public class MyCursorAdapter extends CursorAdapter{
public MyCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) {
super(context, c);
}
public void bindView(View view, Context context, Cursor cursor) {
TextView ratingBarName = (TextView)view.findViewById(R.id.ratingbar_name);
ratingBarName.setText(cursor.getString(
cursor.getColumnIndex(MyDbAdapter.KEY_NAME)));
RatingBar ratingBar = (RatingBar)view.findViewById(R.id.ratingbar);
ratingBar.setRating(cursor.getFloat(
cursor.getColumnIndex(MyDbAdapter.KEY_RATING)));
RatingBar.OnRatingBarChangeListener barListener =
new RatingBar.OnRatingBarChangeListener() {
public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromTouch) {
MyDbAdapter db = MyActivity.this.getDbHelper();
// NEED ACCESS TO CURSOR HERE SO I CAN DO:
// cursor.getColumnIndex(MyDbAdapter.KEY_ROWID);
// AND THEN USE THE ROW ID TO SAVE THE RATING IN THE DB
// HOW DO I DO THIS?
}
}
ratingBar.setOnRatingBarChangeListener(barListener);
}
public View newView(Context context, Cursor cursor, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(context);
View view = inflater.inflate(R.layout.ratingrow, parent, false);
bindView(view, context, cursor);
return view;
}
}
非常感谢你。