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;
            }
link|improve this question

Ha Ha "Anfroid" - Freudian slip! – mAndroid Sep 2 '11 at 0:03
feedback

1 Answer

up vote 5 down vote accepted

I've recently implemented this and this is my instantiateItem method (made it a bit minimal for readability.

@Override
public Object instantiateItem(View collection, int position) {
    Evaluation evaluation = evaluations.get(position);

    View layout = inflater.inflate(R.layout.layout_evaluation, null);

    TextView evaluationSummary = (TextView) layout.findViewById(R.id.evaluation_summary);
    evaluationSummary.setText(evaluation.getEvaluationSummary());

    ((ViewPager) collection).addView(layout);

    return layout;
}

@Override
public void destroyItem(View collection, int position, Object view) {
     ((ViewPager) collection).removeView((View) view);
}

@Override
public boolean isViewFromObject(View view, Object object) {
    return view == object;
}

So for the page that is displayed, I get the data from my evaluations list using the position as the index. Then inflate the Layout which has the views I will add my data too. Then I get the TextView to set the evaluation summary text on. Then the whole Layout is added to the ViewPager. And finally the Layout is also returned.

If you still can't get it post your code.

link|improve this answer
Thanks C0de attack. I can see that you are inflating a layout. Does this have more than one view in it? I can only see that you are setting up one text view to page - I have got this to work. It's when I want to scroll 2 textviews that I start having problems. I'm also a bit confused as to how a layout inflates only to a view when it contains many views? – mAndroid Sep 2 '11 at 1:04
in fact could you post the XML layout for me to have a look at if that's not too much trouble. Much appreciated. – mAndroid Sep 2 '11 at 1:17
Looking at the isViewFromObject in PagerAdapter: if I want to use multiple views per page do I need to override this method further to do a more complete check to see if the views are part of the object returned? – mAndroid Sep 2 '11 at 1:55
I've added the other two methods that need to be implemented. My layout does actually have several views, I just showed one for simplicity. – C0deAttack Sep 2 '11 at 2:16
Thanks, I'd actually just worked that out. I've got a new problem that only one of the text views displays what I set it to in the instantiateItem method. I've added my code into the initial question. If both textViews are left in the code it displays 2__________>0 Textview2 if the second textview set text is commented out then it displays the first (1_________________>0) – mAndroid Sep 2 '11 at 2:29
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.