Это один из моих методов в моем классе адаптера,
@Override
public Object instantiateItem(ViewGroup container, final int position) {
layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.custom_layout, null);
ImageView imageView = (ImageView) view.findViewById(R.id.imageView);
imageView.setImageResource(images[position]);
if((position) == (images.length-1)){
// Start another activity using intent
}
ViewPager vp = (ViewPager) container;
vp.addView(view, 0);
return view;
}
и как начать новое действие в этом методе пользовательского класса адаптера?