我正在按照本教程建立一个画廊。直到现在我已经设法使用如下所示的滑动功能显示图像
public Object instantiateItem(View collection, int position) {
LayoutInflater inflater = (LayoutInflater) collection.getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
int Id = 0;
switch (position) {
case 0:
Id = R.layout.farleft;
break;
case 1:
Id = R.layout.left;
break;
}
View view = inflater.inflate(resId, null);
((ViewPager) collection).addView(view, 0);
return view;
}
但是我想显示很多图片,所以我无法设置数百个案例来设置数百个不同的布局。那么我在这里有什么选择?有人能指出我正确的方向吗?