使用通用圖像加載器加載圖像時出現奇怪的問題。 我想要顯示四捨五入全角的圖像,但輸出圖像不按要求顯示。使用通用圖像加載器時圖像角不會變圓
下面是我在適配器項目的XML代碼 -
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/container_rl"
android:background="@color/transparent_color"
android:layout_height="300dp">
<ImageView
android:id="@+id/object_iv"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<View
android:background="@drawable/rounded_corner_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/name_tv"
android:layout_centerInParent="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="@dimen/space_20"
android:layout_marginRight="@dimen/space_20"
android:text="@string/app_name"
android:textColor="@color/white"
android:textSize="@dimen/size_18"/>
</RelativeLayout>
這裏是代碼適配器 -
ImageLoaderUniversal.ImageLoadWithRoundedCorners(mContext,ImageURI, mFeedIV);
,並在負載圖像最後一個碼 -
public static void ImageLoadWithRoundedCorners(Context mContext,final String URl, final ImageView imageView){
DisplayImageOptions options = new DisplayImageOptions.Builder()
.showImageOnLoading(R.mipmap.ic_default_media)
.showImageForEmptyUri(R.mipmap.ic_default_media)
.showImageOnFail(R.mipmap.ic_default_media)
.cacheOnDisk(true)
.displayer(new RoundedBitmapDisplayer(25))
.build();
ImageLoaderConfiguration.Builder builder = new ImageLoaderConfiguration.Builder(mContext).defaultDisplayImageOptions(
options).memoryCache(new WeakMemoryCache());
ImageLoaderConfiguration config = builder.build();
imageLoader = ImageLoader.getInstance();
if (!imageLoader.isInited()) {
imageLoader.init(config.createDefault(mContext));
}
imageLoader.displayImage(URl, imageView, options);
}
添加在這裏使用上面的代碼附加了如何顯示圖像的鏡頭。
請提供您的解決方案,我的問題。
TIA
嘗試和同樣的結果 – Ravi