So far I've been hacking together examples to get a feel for the APIs the Anfroid SDK as a whole. However I've hit an impasse.
I'm trying to Inflate a LinearLayout with 2 TextViews from an XML file. These will be then Views that are paged. I simply canot get this to work and realise that I totally don't understand what's going on with the code.
Looking at the source I can see that the method ViewPager.addNewItem calls the InstantiateItem from the supplied adapter. And addNewItem is called in populate(). populate is called in a number of other places.
Anyway in the example I've seen when the method is overridden for PagerAdapter you must include a call to AddView on the ViewPager colletion that is passed from the viewpager as an argument.
If I wish to add multiple views I thought this would be a case of calling addView more than once but as instantiateItem returns an Object to ViewPager (in the example I had it returns the view that it added) I don't know what to return. I've tried returning the inflated view and a number of other things.
Please can someone explain what is happening here?
Much appreciated.
M
@Override
public Object instantiateItem(View collection, int position) {
layout = inflater.inflate(R.layout.animallayout, null);
TextView tv = (TextView) layout.findViewById(R.id.textView1);
tv.setText("1________________>" + position);
TextView tv2 = (TextView) layout.findViewById(R.id.textView2);
tv.setText("2________________>" + position);
((ViewPager) collection).addView(layout);
return layout;
}