我正在使用朋友下载图片并设置在ImageView
; 但是,我收到此错误:
只有创建视图层次结构的原始线程才能接触其视图。
这是我的代码。
ImageView profilePicture =....
Thread thread = new Thread() {
@Override
public void run() {
profilePic.setImageBitmap(image_profile);
}
};
thread.start();
image_profileBitmap
是一个有效的Bitmap
文件。(我通过调试检查了它。)
该线程在OnCreate
方法中运行。