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.
我想做的是一个类似于 iFunny 的应用程序或任何有趣的图片应用程序。我希望能够从互联网上获取直接图像链接的列表,然后在画廊中一张一张地显示图像。用户可以滑动查看下一张图片。我应该添加什么才能做到这一点。我以前从未与画廊合作过。谢谢你。
您可以Uri直接设置到ImageView图库。如下...
Uri
ImageView
Uri myUrl=Uri.parse(ImageUrlArray[Position]); imageView.setImageURI(myUrl);
按照您使用的getView方法进行ImageAdapter。
getView
ImageAdapter