我正在尝试在我的测试项目中使用通用图像加载器(UIL),我认为当高度大于宽度时我无法加载图像。 UIL加载到我的图像视图的图像太小,即使图像实际上很大。因此,当我拉伸我的图像视图以匹配其父级时,图像看起来严重模糊且质量低。
但是当UIL的高度小于或等于它们的宽度时,UIL会正确加载我的图像。
这是我的java代码:
DisplayImageOptions defaultOptions = new DisplayImageOptions.Builder()
.cacheOnDisk(true)
.imageScaleType(ImageScaleType.NONE)
.bitmapConfig(Bitmap.Config.ARGB_8888)
.build();
File cacheDir = StorageUtils.getCacheDirectory(getApplicationContext());
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext())
.defaultDisplayImageOptions(defaultOptions)
.threadPoolSize(1)
.diskCache(new UnlimitedDiskCache(cacheDir))
.diskCacheExtraOptions(480, 320, null)
.build();
ImageLoader imageLoader = ImageLoader.getInstance();
imageLoader.init(config);
String imageURL;
ImageView imageView1 = (ImageView)findViewById(R.id.imageview1);
imageURL = "http://www.up.edu.ph/wp-content/uploads/2017/01/twsc-40th-posters-WEB-01.png";
imageLoader.displayImage(imageURL, imageView1);
ImageView imageView2 = (ImageView)findViewById(R.id.imageview2);
imageURL = "http://www.up.edu.ph/wp-content/uploads/2017/01/UPD-Chancy-Selection1.png";
imageLoader.displayImage(imageURL, imageView2);
这是我的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="ph.edu.up.e.universalimageloadersample.MainActivity"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imageview1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />
<ImageView
android:id="@+id/imageview2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />
</LinearLayout>
</ScrollView>
</LinearLayout>
这是UIL加载时图像的样子:
请不要建议任何其他图像加载器。除此之外,任何帮助将不胜感激。谢谢!
答案 0 :(得分:1)
我犯了一个愚蠢的错误,但我终于找到了解决办法。使用时要小心:
.diskCacheExtraOptions(480, 320, null)
无论图像比例类型如何,都可能会降低图像质量。
重要提示:使用时
.cacheOnDisk(true)
在再次运行程序之前删除模拟器/手机上的缓存/数据(为了确保,我通常会删除整个应用程序并在下次运行时重新安装)。似乎UIL以后在缓存之前不会下载更高质量版本的图像,无论它们的质量如何。
希望这有助于某人