- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在下载图像和更新 ImageView 时遇到问题,我正在使用 ExecutorServices 下载图像,但我面临的问题是,就场景而言,我正在使用基本适配器在列表中显示 Imageview。图像被下载但是这两个图像仅在 firstImage View 中更新。
所以位图在同一个imageView中得到更新,有没有人遇到过类似的问题
例如,我正在下载 2 个图像,它正在创建 2 个 ImageDownloader 实例,所有运行良好,直到下载前部分中该类的 Run() 行,一旦图像被下载,我将获得 ImageView 的对象引用第一个 Image Downloader 类,我不知道为什么?我认为它与 listview 或适配器无关,它与 Executor 和 Runnable 实现更相关,
公共(public)类 ImageLoader {
ExecutorService mExecutorService = null;
static ImageLoader mLoader = null;
Handler mImageHandler = null ;
DisplayMetrics mDisplayMetrics = null;
int mRequiredWidth =0 , mRequiredHeight = 0;
Map<String,ImageView> mToLoadObjects = Collections.synchronizedMap(
new WeakHashMap<String, ImageView>());
ArrayList<String> toloadURL = new ArrayList<String>();
protected Resources mResources = null;
MyImageCache mMemoryCache;
Activity activity;
public static final String LOGGER = "ImageLoader";
public ImageLoader(Activity context){
mExecutorService = Executors.newFixedThreadPool(5);
mImageHandler = new Handler();
mResources = context.getResources();
activity = context;
mMemoryCache = new MyImageCache();
mDisplayMetrics = context.getResources().getDisplayMetrics();
mRequiredWidth = mDisplayMetrics.widthPixels;
mRequiredHeight = mDisplayMetrics.heightPixels;
}
public void loadImage (String url,ImageView imageView){
try {
if (imageView != null) {
if (!toloadURL.contains(url)) {
toloadURL.add(url);
mExecutorService.execute(new ImageDownloader(url,imageView));
}
}
}catch (Exception e){
Log.v("Exception Occurs>>",""+e.getMessage());
}
}
class ImageDownloader implements Runnable{
String imageUrl;
ImageView downloadableImageView;
ImageDownloader loader;
ImageDownloader(String url,ImageView view){
Log.v(LOGGER,"Within ImageDownloader "+url +"this>>>"+this);
loader = this;
imageUrl = url;
downloadableImageView = view;
Log.v(LOGGER,"Within ImageDownloader "+downloadableImageView.getTag()+"this>>>"+this);
}
@Override
public void run() {
Log.v(LOGGER, "run" + downloadableImageView.getTag()+"this>>>>>"+this);
Bitmap tempBitmap = null;
tempBitmap = (mMemoryCache.getBitmapFromMemCache(imageUrl));
try{
if(tempBitmap!=null){
Log.v(LOGGER,"ImageBitmap Wid>>>>>>"+downloadableImageView.getTag()+"this>>>>"+this+""+tempBitmap.getWidth());
Log.v(LOGGER,"ImageBitmap Ht>>>>>>"+downloadableImageView.getTag()+ "this>>>>"+this+""+tempBitmap.getHeight());
downloadableImageView.setImageBitmap(tempBitmap);
}else{
Log.v(LOGGER, "else to download Tag is" + downloadableImageView.getTag()+"this>>>>>"+this);//Works till this point
final Bitmap tempBitmap1 = getBitmap(imageUrl);
Log.v(LOGGER, "else to download Tag is " + downloadableImageView.getTag() + "After Download>>>" + tempBitmap1.getWidth() + "this>>>>>" + this);//Issue happens here
mMemoryCache.addBitmapToMemoryCache(imageUrl, tempBitmap1);
Log.v("LOGGER, else to download Tag is "+downloadableImageView.getTag()+"After Cache>>>", "" + downloadableImageView.getTag()+"this>>>>"+this);
if(tempBitmap1!=null){
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
Log.v("LOGGER, else to download Tag is "+downloadableImageView.getTag()+"RunOnUIThread>>>", "" + downloadableImageView.getTag()+"this>>>>"+loader);
downloadableImageView.setImageBitmap(tempBitmap1);
downloadableImageView.requestLayout();
}
});
}
}
}catch(Exception e){
Log.v("ExceptionBitmap",""+e.getMessage());
}
}
public Bitmap getBitmap(String imageUrl){
Bitmap bitmap=null;
try {
Log.v("Within getBitmap ","run");
URL uri = new URL(imageUrl);
HttpURLConnection connection = (HttpURLConnection)uri.openConnection();
connection.setInstanceFollowRedirects(true);
//bitmap = BitmapFactory.decodeStream(connection.getInputStream());
bitmap = decodeSampledBitmapFromInputStream(connection.getInputStream(), mRequiredWidth, mRequiredHeight);
} catch (Exception e) {
Log.v("ExceptionLoad",""+e.getMessage());
}
return bitmap;
}
}
public Bitmap decodeSampledBitmapFromInputStream(InputStream in
, int reqWidth, int reqHeight) {
InputStream copyiInputStream1 = null;
InputStream copyiInputStream2 = null;
try {
byte[] data = InputStreamTOByte(in);
copyiInputStream1 = byteTOInputStream(data);
copyiInputStream2 = byteTOInputStream(data);
} catch (Exception e) {
e.printStackTrace();
}
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeStream(copyiInputStream1, null, options);
// Calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeStream(copyiInputStream2, null, options);
}
public static int calculateInSampleSize(
BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
final int halfHeight = height / 2;
final int halfWidth = width / 2;
// Calculate the largest inSampleSize value that is a power of 2 and keeps both
// height and width larger than the requested height and width.
while ((halfHeight / inSampleSize) > reqHeight
&& (halfWidth / inSampleSize) > reqWidth) {
inSampleSize *= 2;
}
}
return inSampleSize;
}
public InputStream byteTOInputStream(byte[] in) throws Exception{
ByteArrayInputStream is = new ByteArrayInputStream(in);
return is;
}
public byte[] InputStreamTOByte(InputStream in) throws IOException {
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
byte[] data = new byte[1024*16];
int count = -1;
while((count = in.read(data,0,1024*16)) != -1)
outStream.write(data, 0, count);
data = null;
return outStream.toByteArray();
}
class BitmapUpdater implements Runnable
{
Bitmap bitmap;
ImageView imageView;
public BitmapUpdater(Bitmap bitmap, ImageView imageView){
bitmap=bitmap;
imageView =imageView;
}
public void run()
{
// Show bitmap on UI
if(bitmap!=null){
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
imageView.setImageBitmap(bitmap);
}
});
}
else
imageView.setImageResource(R.drawable.account_photo_book_detail2);
}
}
Image Tag(0,1)--> I applied Tag for ImageView to sort out the Image View instance
最佳答案
为什么不使用 Glide 库进行图像下载?
它在一行中完成所有事情。
这是它的语法
Glide.with(context).load(URL).into(Imageview);
关于android - 下载图像和更新 listView 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36440770/
我之前在论坛上发布过这个,但我想我不太清楚。我有一个侧边栏 ListView 和一个包含我的控件的主面板。我想在 oncreate() 中突出显示 listview 中的 Activity 项,因为每
这里有没有人知道我如何通过 onTap() 扩展 ListView 项(在本例中为卡片)的内容 - 以显示更多选项?您知道那里有可以提供帮助的酒吧吗? 我已经看过了,但我不知道要搜索什么?我相信你们都
我的 ListView 控件有问题。我希望我的奇数行和偶数行具有不同的颜色,但我想通过代码而不是 FXML 来实现。例如: 第一行 - 绿色 第二行 - 红色 第三行 - 绿色 第四行 - 红色 现在
我有一个 ListView 。我想让单元格背景透明。目前,我正在做以下事情: .list-cell { -fx-background-color: transparent; } 但是,细胞的颜
我想创建一个几乎无限的元素列表,但我想将列表的初始位置设置为某个特定元素。像这张图片: 其中索引 0 将是初始位置,并且此列表可能会也可能不会在两个方向上延伸很长。 我可以像这样创建我的元素: W
有没有办法在JavaFX中获取ListView的可见项?我想确定 JavaFX 应用程序中 ListView 显示的第一个可见项。 以下代码found here不适合我(仅适用于 TableView)
开发人员。 我尝试在水平方向拉伸(stretch) ListView 项目。我确实重置了 ItemContainerStyle ,并且水平对齐是拉伸(stretch)的。这是 MainPage.xam
有没有办法在JavaFX中获取ListView的可见项?我想确定 JavaFX 应用程序中 ListView 显示的第一个可见项。 以下代码found here不适合我(仅适用于 TableView)
我想问一下: 我有一个预定义顺序的数组。 var order=new Array(); order[0]="Tesco"; order[1]="Interspar"; order[2]="
我希望创建以下内容:当到达内部 Listview 的顶部或底部时,我想继续在顶部 Listview 中滚动。见动图: Gif of what I got so far 一个选项是在到达底部时将内部 L
我正在尝试在 ajax 发布后刷新 jQuery 移动 ListView ,我一直在尝试使用 .trigger("create") 来执行此操作,如下所示: Most Played
我真的不明白是什么导致了错误我检查了文档,这里有一个非常相似的例子是我的 views.py,我使用的应用程序下的 urls.py 包含,以及模板 View .py class SchoolListVi
我有这个父布局 parent_listview 的列表项具有这种布局 child_listview 的项目有这个布局
我在单击列表项时获取 listview 项 时遇到问题。我得到了 simple listview(Arrayadapter) 的 listview item,但我遇到了 custom listview
我有一个工作正常的 DropdownMenu,但我需要一个 ListView,但我无法转换它。 DropdownMenu 如下所示: // Create the List of devices t
我想实现一个可滚动(垂直)且其中包含元素的屏幕。所以我把它放在 listview.builder 上。问题是,其中一个元素是另一个水平滚动的 listview.builder。当我实现它时,horiz
帮助!我想不通! 为了帮助我学习 SwiftUI,我正在使用 ListView 制作一个简单的杂货 list 应用程序。点击列表中的每个项目时,有些按钮会变成绿色或红色。 在我向列表数组中添加太多项目
所以我知道我们可以等待 ListView 加载,然后显示它。但是,如果我们动态加载正在下载的图像,ListView 将加载但图像尚未加载,因此它们不会出现在 ListView 中。 可接受的等待 Li
我是 Android 的新手,正在努力提高编程技能。 在这里,我有自定义 ListView 适配器类,我曾在其中显示 ListView 项目,如 TextView 、图像等。 我需要做的是,我在 Li
So, what I want is to individually disable a button for the concerned item in the ListView when clic
我是一名优秀的程序员,十分优秀!