1

私はこのチュートリアルを使用しています: http://manishkpr.webheavens.com/android-viewpager-as-image-slide-gallery-swipe-gallery/

ここで彼は描画可能な画像を使用しましたが、今はサーバー画像を使用したいです

ImageAdapter.java:

public class ImageAdapter extends PagerAdapter {
Context context;
private int[] GalImages = new int[] {
R.drawable.one,
R.drawable.two,
R.drawable.three
};
ImageAdapter(Context context){
this.context=context;
}
@Override
public int getCount() {
return GalImages.length;
}

@Override
public boolean isViewFromObject(View view, Object object) {
return view == ((ImageView) object);
}

@Override
public Object instantiateItem(ViewGroup container, int position) {
ImageView imageView = new ImageView(context);
int padding = context.getResources().getDimensionPixelSize(R.dimen.padding_medium);
imageView.setPadding(padding, padding, padding, padding);
imageView.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
imageView.setImageResource(GalImages[position]);
((ViewPager) container).addView(imageView, 0);
return imageView;
}

@Override
public void destroyItem(ViewGroup container, int position, Object object) {
((ViewPager) container).removeView((ImageView) object);
}
}

それでも私は次のような画像パスを使用しています:

R.drawable.one,
R.drawable.two,
R.drawable.three

しかし今、私は以下のような画像パスを使用したい:

http://manishkpr.webheavens.com/wp-content/uploads/2012/10/bloglogo1.png,
http://manishkpr.webheavens.com/wp-content/uploads/2012/10/bloglogo2.png,
http://manishkpr.webheavens.com/wp-content/uploads/2012/10/bloglogo3.png
4

2 に答える 2

5

参照http://www.androidhive.info/2012/07/android-loading-image-from-url-http/を使用して何もする必要はありません。

URLを含む文字列の配列を作成するだけです

    String[] imagUrl={
            http://manishkpr.webheavens.com/wp-content/uploads/2012/10/bloglogo1.png,
            http://manishkpr.webheavens.com/wp-content/uploads/2012/10/bloglogo2.png,
           http://manishkpr.webheavens.com/wp-content/uploads/2012/10/bloglogo3.png };

配列を作成した後、ファイルImageLoader.javaFileCache.javaMemoryCache.javaおよびUtils.javaをアプリケーションにコピーするだけです。

その後、アダプタークラスで次のようにします。

@Override
public Object instantiateItem(ViewGroup container, int position) {
    // Imageview to show
    ImageView imageView = new ImageView(context);
    // ImageLoader class instance
    ImageLoader imgLoader = new ImageLoader(getApplicationContext());
     // Loader image - will be shown before loading image
    int loader = R.drawable.loader;
    // whenever you want to load an image from url
    // call DisplayImage function
    // url - image url to load
    // loader - loader image, will be displayed before getting image
    // image - ImageView 
    imgLoader.DisplayImage(imagUrl[position], loader, imageView );
}
于 2013-10-05T07:34:56.637 に答える
1

画像ローダーを使用する

参考のため

http://www.androidhive.info/2012/07/android-loading-image-from-url-http/

于 2013-08-09T12:33:14.643 に答える