简体   繁体   中英

Picasso image not displaying android

on my nodeJS server, i have an image that is displaying on web app however it can not be accesses from the android app using Picasso.

the url from the server is :

https://www.mesannuairesvideos.com/uploads/file-1491574016406.jpg

my code is :

                Picasso.with(getApplicationContext())
                    .load("https://www.mesannuairesvideos.com/uploads/file-1491574016406.jpg")
                    .placeholder(R.drawable.real_madrid_tshirt)
                    .error(R.drawable.ic_profile)
                    .resize(250, 200)
                    .transform(new CircleTransform())
                    .into(imageView);

could anyone try to open it in an android test app please, I want to see if it can be included in an imageView on android application

any help would be appreciated. thanks

对于它的价值,我遇到了这个问题,当我在实际设备上进行尝试时,它在模拟器上不可见时就可见。

您的图片无法在浏览器中打开,可能不是您的api键或链接

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM