picasso

    -4熱度

    3回答

    使用Piccaso這裏是我的代碼,我已經得到了錯誤 Picasso.with(ThreeFragement.this).load(model.getMoviePoster()).into(viewHolder.ivMoviePoster); 即使我設置ThreeFragment到的getContext,它不工作。 整個代碼寫在下面的地方,我想在畢加索實現到Firebase RecyclerVi

    -1熱度

    1回答

    在畢加索,我使用OkHttp來請求網絡。我希望將我的圖像緩存在畢加索。但我也希望在我的OkHttpClient中使用日誌攔截器。 要添加OkHttp的日誌記錄攔截器,我做這種方式: OkHttpClient provideOkHttpClient() { HttpLoggingInterceptor logging = new HttpLoggingInterceptor();

    0熱度

    1回答

    下面是代碼: Target mTarget = new Target() { @Override public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom loadedFrom) { mBinding.imageView.setImageBitmap(bitmap); }

    0熱度

    1回答

    目前我有沿着這 public class SomeActivity extends AppCompatActivity { public AppCompatImageView myFavPicture; @Override protected void onCreate(Bundle savedInstanceState) { super.o

    0熱度

    1回答

    我遇到意外的kotlin和rxjava行爲。我用畢加索創造加載圖像的擴展功能 fun Picasso.loadBitmap(url: String) : Observable<Bitmap> = Observable.create<Bitmap> { emitter -> Log.d("picasso load bitmap", "me ${this}")

    1熱度

    2回答

    我的動態類沒有看到: public class CommonChattingAttachmentActivity extends AppCompatActivity { Realm realm; RealmChangeListener realmChangeListener; CommonChattingAttachmentCustomAdapter a

    -2熱度

    2回答

    我在使用picasso庫的應用程序中使用了尺寸爲1080 * 1920的圖像,但是圖像沒有水平覆蓋整個視圖。這裏是畢加索 private void initBackgroundImage() { ImageView background = (ImageView) findViewById(R.id.iv_background); Picasso.with(this).load

    0熱度

    1回答

    在我的應用程序中,我使用picasso下載圖像並將該圖像轉換爲字節數組。我在下方調用此方法下載並將圖像轉換爲字節數組。 private byte[] convertToByte(String url) { Picasso.with(list_my_posts.this).load(url).fit().centerCrop().into(img); Bitmap bitmap

    2熱度

    1回答

    我有以下代碼,如預定裝載圖像脫機其不列入。它在線運行良好,但我也需要離線加載圖像。我已經授予了編寫外部存儲的權限。任何想法都會非常有幫助。 Picasso.with(getContext()) .load(userInfo.getUserPictureUri()) .networkPolicy(NetworkPolicy.OFFLINE) .resize(80, 80

    1熱度

    1回答

    我從Contentful(通過使用名爲Vault的庫)接收的圖像的數據類型是一項資產。我想在ImageView中顯示圖像,但無法在畢加索中加載資源。參數可以是Uri,File,Int或String。 有沒有辦法從我收到的資產中獲得其中一個參數?