-1
使用Picasso庫從服務器下載圖像時,它會顯示黑色。因爲這是具有透明背景的QR碼圖像。它在某些設備上工作,但不適用於nexus 6 - 5.0版本。請幫我解決這個問題。具有黑色背景的透明圖像顯示
Picasso.with(this).load(url).into(imageview, new Callback() {
@Override
public void onSuccess() {
Toast.makeText(MainActivity.this, "image loaded successfully", Toast.LENGTH_SHORT).show();
}
@Override
public void onError() {
Toast.makeText(MainActivity.this, "Error Loading Image", Toast.LENGTH_SHORT).show();
}
});
XML:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="90dp"
android:layout_marginStart="90dp"
android:layout_marginTop="164dp"
android:background="@android:color/white" />
</RelativeLayout>
請提供一個[最小,完整和可驗證的示例](http://stackoverflow.com/help/mcve)來展示您的問題。在這種情況下,這將包括您使用此圖像的源代碼(包括佈局),以及指向此行爲的圖像的鏈接。 – CommonsWare
請檢查代碼 – user1517638