嗨,我是相当新的尝试使用图片网址作为我的来源 画廊图片,但我很难找到这是如何工作的,这 是目前为止的代码。
public class ImageAdapter extends BaseAdapter {
private static final int ITEM_WIDTH = 232;
private static final int ITEM_HEIGHT = 150;
private final int mGalleryItemBackground;
private final Context mContext;
private final Integer[] mImageIds = {
R.drawable.pic1,
R.drawable.pic2,
R.drawable.pic3,
};
我会把网址放在哪里?
答案 0 :(得分:0)
如果网址来自网络,则需要完成一些工作。幸运的是,有许多库提供ImageView
实现来处理这些场景。
查看LoopJ的SmartImageView
另请查看GreenDroid以获得更强大的UI构建器实现。