Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在制作音乐播放器。我想使用 Picasso 加载我的 mp3 文件 imageArt。但主要问题是我如何才能获得该 imageArt 并设置为毕加索。
您是否正在寻找如何使用 Picassor 将图片加载到 Android 中的一个 imageview 中?查看他们的文档,那里给出了。不言自明也。
Picasso.with(context) .load(url) .into(imageView)
如果您不想从某个 url 加载但已经在资源文件夹中拥有它,那么那里也已经提供了示例。
Picasso.with(context).load(R.drawable.landing_screen).into(imageView1);