英文:
DiskCacheStrategy cannot be resolved to a variable
问题
什么意思?为什么它显示为“无法解析为变量”。
代码:
Glide.with(ImageViewActivity.this).load(Uri.parse(LM_data.get(position).get(getIntent().getStringExtra("nme")).toString())).diskCacheStrategy(DiskCacheStrategy.NONE).skipMemoryCache(true).into(imageView);
英文:
What does it mean? why does it says, cannot be resolved to a variable.
Code:
Glide.with(ImageViewActivity.this).load(Uri.parse(LM_data.get(position).get(getIntent().getStringExtra("nme")).toString())).diskCacheStrategy(DiskCacheStrategy.NONE).skipMemoryCache(true).into(imageView);
答案1
得分: 0
修复 Android Studio 中的 DiskCacheStrategy:
对于这个问题,我是 Android 的新手,但我认为我找到了解决方案。
你必须完整地写成 .diskCacheStrategy(com.bumptech.glide.load.engine.DiskCacheStrategy.NONE)
。
或者你也可以使用 Alt + Enter,Android Studio 会为你修复成缩写形式。
通过这样做,你将使图片不存储在应用程序缓存中,这对于加载许多图片非常有用。
英文:
Fix DiskCacheStrategy in android studio:
Sorry, I'm a newbie to android but I think I found the solution.
You must write it in full .diskCacheStrategy (com.bumptech.glide.load.engine.DiskCacheStrategy.NONE)
Or you can also give it Alt + Enter and android studio will fix it for you in abbreviated form.
With that you will make that the images are not stored in the application cache which is useful if you load many images.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论