我有一个 ViewPager,每个视图都有一个 ImageView。我需要为视图中的 currentItem 设置一个 OnTouchListener。我有以下代码,但是当我尝试设置侦听器时不断得到 NULL。下面是我的代码。如何获得对我当前项目 ImageView 的有效引用???
private class CalendarPagerAdapter extends PagerAdapter {
public int getCount() {
return NUM_VIEW;
}
public Object instantiateItem(View collection, int position) {
View view=null;
LayoutInflater inflater = (LayoutInflater) collection.getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
int resId = 0;
switch (position) {
case 0:
resId = R.layout.cal_july;
view = inflater.inflate(resId, null);
calendar = (ImageView) findViewById(R.id.imageView1);
// IT IS ALWAYS NULL HERE
if(calendar == null) {
System.out.println("its null!!!!!!");
} else {
System.out.println("its NOT NULL!!!!!");
}
// Breaks here, obviously!!!
calendar.setOnTouchListener(getOnTouchListener());
break;
case 1:
resId = R.layout.cal_august;
view = inflater.inflate(resId, null);
calendar = (ImageView) findViewById(R.id.imageView1);
calendar.setOnTouchListener(getOnTouchListener());
break;
case 2:
resId = R.layout.cal_september;
break;
case 3:
resId = R.layout.cal_october;
break;
case 4:
resId = R.layout.cal_november;
break;
}
((ViewPager) collection).addView(view, 0);
return view;
}