私はデモ画像のリンクを持っています:
http://madhabpurps.org/wp-content/uploads/2013/04/28-239x300.jpg
ビューホルダークラス内のレイアウトの背景に画像を設定したい:
static class ViewHolder {
TextView txtName;
TextView txtCityState;
RelativeLayout rl;
}
holder.txtName.setText(searchArrayList.get(position).getTitle());
holder.txtCityState.setText(searchArrayList.get(position).getDescription());
ここのリンクから画像を設定する必要があります。このコード行を試しましたが、エラーが表示されます。
holder.rl.setBackgroundResource(searchArrayList.get(position).getImage());