我正在尝试为用户创建Intro Slider,以便他们能够更好地理解应用程序的概念,但是我在初始化视图寻呼机内的图像视图时遇到了问题。
这里我设置布局来查看寻呼机并将参数设置为它的布局:
@Override
public Object instantiateItem(ViewGroup container, int position) {
layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(layouts[position], container, false);
ImageView imageView = (ImageView) view.findViewById(R.id.image);
Picasso.with(WelcomeActivity.this)
.load(imageResources[position])
.into(imageView);
container.addView(view);
return view;
}
我有三个布局和三个图像视图,但ImageView不会初始化,我无法为其设置图像资源。图像没有显示在图像视图中,我没有错误。我在这里做错了什么?