1

私は Droid fu の素晴らしいライブラリを使用しています! ただし、webgalleryview の実装に問題があります。それを実装する方法がわかりません。

URLからいくつかの画像を表示したい。そして、画像をキャッシュします。ドロイドフーのライブラリでこれを行うにはどうすればよいですか? WebGalleryAdapter.

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 に答える