ビューの背景画像 URL を含む JSON 文字列をダウンロードします。ダウンロードコードは の中にありdoInBackground(Object... params)
ます。画像の読み込みには、Universal Image Loader を使用しています。
ImageLoader.getInstance().loadImage(shop.background, new ImageLoadingListener() {
public void onLoadingStarted(String imageUri, View view) {
// TODO Auto-generated method stub
}
public void onLoadingFailed(String imageUri, View view,
FailReason failReason) {
// TODO Auto-generated method stub
}
public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) {
// TODO Auto-generated method stub
Drawable d = new BitmapDrawable(getResources(),loadedImage);
mainLayout.setBackgroundDrawable(d);
}
public void onLoadingCancelled(String imageUri, View view) {
// TODO Auto-generated method stub
}
});
私は得ています
java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
どこが間違っていますか?