私は Droid fu の素晴らしいライブラリを使用しています! ただし、webgalleryview の実装に問題があります。それを実装する方法がわかりません。
URLからいくつかの画像を表示したい。そして、画像をキャッシュします。ドロイドフーのライブラリでこれを行うにはどうすればよいですか? WebGalleryAdapter.
アクティビティを作成し、ギャラリーを含む 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);