1

我正在使用 Droid fu 的库,非常棒!我在实施 webgalleryview 时遇到问题。我不知道如何去实施它。

我希望它显示来自 url 的一些图像。并缓存图像。我将如何使用 droid fu 的库来做到这一点?网络画廊适配器。

4

1 回答 1

0

创建一个活动并将一个 XML 布局绑定到它,其中包含一个画廊。把它放在 Fill_Parent 上。然后只需将此代码放入您的活动中:

// Create a list of url's
List<String> imageURLs = new ArrayList<String>();
imageURLs.add("http://www.example.com/1.jpg");
imageURLs.add("http://www.example.com/2.jpg");
// Etc.

// Creates an adapter with the image url's for the overwritten getView method.
WebGalleryAdapter webGalleryAdapter = new WebGalleryAdapter(this, imageURLs);

// Get the gallery from the XML layout and set the web adapter.
Gallery gallery = (Gallery) findViewById(R.id.gallery);
gallery.setAdapter(webGalleryAdapter);
于 2011-10-16T11:16:38.373 回答