2016-08-24 108 views
-3

我有一個Android應用程序,我使用Volley分析文本,但圖像是無法解析,我的問題是:的Android負荷圖像RecyclerView

如何從URL中使用JSON RecyclerView解析圖像的ImageView和Volley?

+0

使用http://square.github.io/picasso/ – gaara87

+0

您是否嘗試過閱讀一些教程或博客? –

+0

謝謝你,這是我的代碼我怎麼可以添加這??? ??? http://stackoverflow.com/questions/39108249/im-unable-to-parse-image-from-the-json-which-i-get-從服務到recy?noredirect = 1#comment65564207_39108249 –

回答

1

1)嘗試使用Square的Picasso Library從url加載圖像。檢查 它在這裏

http://square.github.io/picasso/

2)這種依賴關係添加到您的應用程序gradle這個

編譯 'com.squareup.picasso:畢加索:2.5.2'

3)添加以下在您的RecyclerView適配器中使用您的onBindViewHolder方法

Picasso.with(context).load(<您的Image Url >).into(持有人。< ImageView參考>);

+0

這是一個圖像,但我有一個這個JSON的URL [鏈接](http://api.androidhive.info/json/movies.json),我有很多圖像沒有一個如何做到這一點? (上下文).load(<您的圖像網址>)。()。(持有人。); –

+0

一旦進入你的onBindViewHolder方法就足夠了 –