In the code pasted below, which works perfectly, the instantiateItem method of the myPagerAdapter class executes AFTER the int myint = 7; instruction. This is causing me a problem because I want to reference some of the xml pages where the myint = 7 instruction is located but an exception is thrown because the 4 pages of xml are not yet inflated when I try to make those references.
instantiateItem is being called 4 times and it is dutifully inflating each xml page but it is apparently being done asynchronously somehow and far too late. I need to get the pages inflated synchrnously, before the mint = 7 instruction (actually my other planned code)is executed. How can I do that? What's going on?
Thanks, Gary
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
PSContext = this;
setContentView(R.layout.main);
MyPagerAdapter adapter = new MyPagerAdapter();
ViewPager myPager = (ViewPager) findViewById(R.id.mysevenpanelpager);
myPager.setAdapter(adapter);
myPager.setCurrentItem(0);
myPager.setOffscreenPageLimit(4);
myPager.setOnPageChangeListener(adapter);
int myint = 7; //just a debug stop
}
private class MyPagerAdapter extends PagerAdapter
implements ViewPager.OnPageChangeListener {
public int getCount() {
return 4;
}
public Object instantiateItem(View collection, int position) {
LayoutInflater inflater = (LayoutInflater) collection.getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
int resId = 0;
switch (position) {
case 0:
resId = R.layout.left;
break;
case 1:
resId = R.layout.gps;
break;
case 2:
resId = R.layout.map;
break;
case 3:
resId = R.layout.right;
break;
}
View view = inflater.inflate(resId, null);
((ViewPager) collection).addView(view, 0);