我是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;
}
}
非常感谢。
答案 0 :(得分:2)
使光标最终成像: final 光标光标
public void bindView(View view, Context context, final Cursor cursor)
答案 1 :(得分:1)
在您进入侦听器之前设置为RatingBar
KEY_ROWID
的标记,然后在侦听器中检索标记并在光标上使用它:
//...
ratingBar.setRating(cursor.getFloat(cursor.getColumnIndex(MyDbAdapter.KEY_RATING)));
ratingBar.setTag(new Long(cursor.getLong(MyDbAdapter.KEY_ROWID)));
RatingBar.OnRatingBarChangeListener barListener =
new RatingBar.OnRatingBarChangeListener() {
public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromTouch) {
MyDbAdapter db = MyActivity.this.getDbHelper();
long theIdYouWant = (Long) ratingBar.getTag();
//use the id
}
}
//...