如何在frescoimageviewer中添加图像

时间:2017-07-30 09:43:51

标签: android imageview

我正在尝试使用

com.github.stfalcon:frescoimageviewer:0.5.0

显示来自SD卡的图片。这是我正在使用的代码

new ImageViewer.Builder<>(MyImagesActivity.this, 
                     imgs) // what is this?
                    .setStartPosition(i)
                    .show();

问题是我无法弄清楚第二个参数是什么(imgs)。该文档表明它是一个列表或String []。但我不知道它是什么。有没有人使用过这个库。任何建议都可能受到高度赞赏。

1 个答案:

答案 0 :(得分:2)

您可以将图像的Urls或Uris作为Objects []或List .....

传递

例如......

 String[] a={"https://viralsweep.com/blog/wp-content/uploads/2015/02/unsplash.jpg","http://cdn.mos.techradar.com/art/other/Beach-970-80.jpg"};

            Fresco.initialize(MainActivity.this);
            new ImageViewer.Builder(MainActivity.this, a).setStartPosition(position).show();

This也可以帮助您