我正在创建与此教程相同的项目androidhive之前它正在运行,但现在图像没有显示我启用了存储权限,我也收到这样的错误
java.lang.ClassCastException: android.support.v7.widget.TintContextWrapper cannot be cast to android.app.Activity
at com.example.admin.imageloading.ImageLoader$PhotosLoader.run(ImageLoader.java:143)
第143行错误
class PhotosLoader implements Runnable {
PhotoToLoad photoToLoad;
PhotosLoader(PhotoToLoad photoToLoad){
this.photoToLoad=photoToLoad;
}
@Override
public void run() {
if(imageViewReused(photoToLoad))
return;
Bitmap bmp=getBitmap(photoToLoad.url);
memoryCache.put(photoToLoad.url, bmp);
if(imageViewReused(photoToLoad))
return;
BitmapDisplayer bd=new BitmapDisplayer(bmp, photoToLoad);
try {
Activity a = (Activity) photoToLoad.imageView.getContext();
a.runOnUiThread(bd);
}catch (Exception e){
e.printStackTrace();
}
}
}
这是我的代码,请有人帮助我
答案 0 :(得分:2)
如果您想在不使用任何第三方库的情况下设置图片,请尝试使用
try {
URL newurl = new URL(image_url);
Bitmap mIcon_val = BitmapFactory.decodeStream(newurl.openConnection() .getInputStream());
imageView.setImageBitmap(mIcon_val);
} catch (IOException e) {
e.printStackTrace();
}
或强>
使用 picasso 库
添加您的gradle文件
dependencies {
compile "com.squareup.picasso:picasso:2.4.0"
}
然后在android menifest文件中添加互联网权限
<uses-permission android:name="android.permission.INTERNET" />
然后在 AndroidLoadImageFromURLActivity
中添加以下代码 public class AndroidLoadImageFromURLActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Loader image - will be shown before loading image
int loader = R.drawable.loader;
// Imageview to show
ImageView image = (ImageView) findViewById(R.id.image);
// Image url
String image_url = "http://api.androidhive.info/images/sample.jpg";
//Loading image from below url into imageView
Picasso.with(AndroidLoadImageFromURLActivity.this)
.load(url)
.into(image);
}
}
答案 1 :(得分:1)
你的问题是:
Activity a = (Activity) photoToLoad.imageView.getContext();
您正在试图从视图中获取活动的上下文。由于appcompat-v7:24.0.0
来自图片的上下文不像之前一样有效,所以现在你无法做到。
您有两种选择:降级或找到另一种方法将上下文传递给您的班级。
答案 2 :(得分:0)
使用Glide或Picasso从URL加载图像。
对于 Glide ,请添加
repositories {
mavenCentral() // jcenter() works as well because it pulls from Maven Central
}
dependencies {
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:support-v4:19.1.0'
}
然后:
ImageView imageView = (ImageView) findViewById(R.id.my_image_view);
Glide.with(this).load("http://api.androidhive.info/images/sample.jpg").into(imageView);
或查看文档以获取详细信息。 https://github.com/bumptech/glide。
对于 Picasso ,添加依赖
compile 'com.squareup.picasso:picasso:2.5.2'
之后使用此代码从URL加载图片:
Picasso.with(context)
.load(url)
.resize(50, 50)
.centerCrop()
.into(imageView);
如果您想查看详细信息,请按以下步骤操作:http://square.github.io/picasso/