gpt4 book ai didi

android - Android 中的 ListView 滚动滞后

转载 作者:行者123 更新时间:2023-11-29 14:57:07 25 4
gpt4 key购买 nike

我的应用程序中有一个自定义 ListView ,它显示图像和文本。我使用以下代码从 URL 获取的图像:

private static Drawable ImageOperations(Context ctx, String url,
String saveFilename) {
try {
InputStream is = (InputStream) fetch(url);
Drawable d = Drawable.createFromStream(is, "src");
return d;
} catch (MalformedURLException e) {
e.printStackTrace();
return null;
} catch (IOException e) {
e.printStackTrace();
return null;
}
}

public static Object fetch(String address) throws MalformedURLException,
IOException {
URL url = new URL(address);
Object content = url.getContent();
return content;
}

一切正常,除了 ListView 滚动,它非常慢。如果我禁用图像,滚动速度 smooth-ens ,但启用图像后,它会滞后很多。

有什么方法可以减少或消除这种滞后现象吗?

谢谢

最佳答案

您需要在后台进行抓取。您可以使用的示例之一: http://android-developers.blogspot.com/2010/07/multithreading-for-performance.html

关于android - Android 中的 ListView 滚动滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3915497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com