I want to Toast a message on button click using viewpager also I want more information on how to access views in viewpager.

I have tried following code.... not working

public class MyPagerAdapter extends PagerAdapter {

    @Override
    public int getCount() {
        return 3;
    }

    @Override
    public Object instantiateItem(final View collection, final int position) {
         v = new View(collection.getContext());
        LayoutInflater inflater =
                (LayoutInflater) collection.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        int resId = 0;
        switch (position) {
        case 0:
            resId = R.layout.cate1;
            v = inflater.inflate(R.layout.cate1, null, false);
            add1 = (Button) v.findViewById(R.id.btnAdd);
            add1.setOnClickListener( new OnClickListener() {
                public void onClick(View m) {
                   Toast.makeText(collection.getContext(),"click",Toast.LENGTH_LONG).show();
                }
            });


            break;
        case 1:
            resId = R.layout.cate2;
            break;
        case 2:
            resId = R.layout.cate3;
            break;
        }

        View view = inflater.inflate(resId, null);
        ((ViewPager) collection).addView(view, 0);

        return view;
    }

    @Override
    public void destroyItem(final View arg0, final int arg1, final Object arg2) {
        ((ViewPager) arg0).removeView((View) arg2);

    }

    @Override
    public boolean isViewFromObject(final View arg0, final Object arg1) {
        return arg0 == ((View) arg1);

    }

    @Override
    public void finishUpdate(View arg0) {
        // TODO Auto-generated method stub

    }

    @Override
    public void restoreState(Parcelable arg0, ClassLoader arg1) {
        // TODO Auto-generated method stub

    }

    @Override
    public Parcelable saveState() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public void startUpdate(View arg0) {
        // TODO Auto-generated method stub

    }

    }

I have written following code for button onclick.... not working..

      v = inflater.inflate(R.layout.cate1, null, false);
            add1 = (Button) v.findViewById(R.id.btnAdd);
            add1.setOnClickListener( new OnClickListener() {
                public void onClick(View m) {
                   Toast.makeText(collection.getContext(),"click",Toast.LENGTH_LONG).show();
                }
            });

plz HELP thank you in advance.

link|improve this question
can you elaborate on 'I have tried following code.... not working'. What is not working? What error do you get? – Gallal Jan 2 at 8:56
add1.setOnClickListener is not working. – Madhav Palshikar Jan 2 at 9:12
It doesn't do what you want it to do? or it doesn't do anything at all? or does it throw an exception? If it throws an exception, what is the exception? – Gallal Jan 2 at 11:17
it doesn't do anything at all.... no errors nothing.. do you have any sample source code of viewpager with button actions...? Thanx for your reply. – Madhav Palshikar Jan 2 at 11:43
feedback

1 Answer

up vote 0 down vote accepted

Leave your code all the same but change:

    ((ViewPager) collection).addView(view, 0);

    return view;

to

    ((ViewPager) collection).addView(v, 0);

    return v;

you did the onclick right on a button that was inflated, then you inflated another view iwth resId and rendered it on the screen, that button exists in the memory of your app but no where else, by returning v, that button is drawn and the onclicklistener is invoked on click.

link|improve this answer
Maybe github.com/Shereef/ViewPagerPlusExpandableList can help you understand viewpager more – Shereef Jan 2 at 20:55
1  
Thanx a lot man it's working well...! – Madhav Palshikar Jan 3 at 7:13
feedback

Your Answer

 
or
required, but never shown

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