How to display images from web in gallery view in android

让人想犯罪 __ 提交于 2019-12-11 18:24:50

问题


I displayed images to the gallery view with images in drawable folder. MyCode

public class GalleryView extends Activity {
Integer[] pics = {
  R.drawable.antartica1,
  R.drawable.antartica2,
  R.drawable.antartica3,
  R.drawable.antartica4,
  R.drawable.antartica5,
  R.drawable.antartica6,
  R.drawable.antartica7,
  R.drawable.antartica8,
  R.drawable.antartica9,
  R.drawable.antartica10
};
ImageView imageView;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Gallery ga = (Gallery)findViewById(R.id.Gallery01);
    ga.setAdapter(new ImageAdapter(this));

    imageView = (ImageView)findViewById(R.id.ImageView01);
    ga.setOnItemClickListener(new OnItemClickListener() {



public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
 long arg3) {
Toast.makeText(getBaseContext(), 
  "You have selected picture " + (arg2+1) + " of Antartica", 
  Toast.LENGTH_SHORT).show();
imageView.setImageResource(pics[arg2]);

}

    });

}



}

But I have images in an arraylist like this

[http://sport24x7.com/nightclub/photos/ 9955917512-Gym-ChestWorkout_xxlarge.jpg, http://sport24x7.com/nightclub/photos/ 64557264beginner_gym_workout_legs_large.jpg, http://sport24x7.com/nightclub/photos/ 54809160intro-ez-bar.jpg]

How to show these images in gallery view. Can anyone help me to do this?


回答1:


you should download images and then display them with Gallery.
i recommend you to use UIL




回答2:


Note that Gallery view is deprecated and shouldn't be used anymore.

Here is a simple tutorial on how to use GridView to display images.

The key concept is to override getView and load your images into the ImageView. You can easily load the images given the URL using Picasso.

For example in your Adapter's getView:

Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);



回答3:


Download the image from the web and convert the stream to Bitmap

Try the below code.

URL imageUrl = new URL(item);
HttpURLConnection conn = (HttpURLConnection)imageUrl.openConnection();
conn.setConnectTimeout(30000);
conn.setReadTimeout(30000);
conn.setInstanceFollowRedirects(true);
InputStream is=conn.getInputStream();
Bitmap bmp = BitmapFactory.decodeStream(is);

I would suggest lazy loading. Try Universal Image Loader



来源:https://stackoverflow.com/questions/28447395/how-to-display-images-from-web-in-gallery-view-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!