好的,所以我做了一个CursorAdapter,以便从ListView中的Sql数据库绑定一些textViews和一个RatingBar。现在我试图添加一个不是来自数据库但会出现在ListView中的ImageView在用户输入完输入后.textView有.setText,ratingBar有.setRating ...但我不知道我应该用什么来进行ImageView.So我的问题我该怎么用来将Imageview绑定到另一个在下面的方法中的ListView中的东西?谢谢
public void bindView(View view, Context context, Cursor cursor) {
String title=cursor.getString(
cursor.getColumnIndexOrThrow(BarsDbAdapter.KEY_TITLE));
String body=cursor.getString(
cursor.getColumnIndexOrThrow(BarsDbAdapter.KEY_BODY));
float rating=cursor.getFloat(
cursor.getColumnIndexOrThrow(BarsDbAdapter.KEY_RATING));
mTitleText = (TextView) view.findViewById(R.id.text1);
mBodyText = (TextView) view.findViewById(R.id.text2);
mRatingBar = (RatingBar) view.findViewById(R.id.ratingbar);
mImageView= (ImageView) view.findViewById(R.id.imageView1);
mTitleText.setText(title);
mBodyText.setText(body);
mRatingBar.setRating(rating);
mImageView.setBackgroundDrawable(R.drawable.shield);
}