Darshak
Darshak

Reputation: 2316

How to set fragment for each page of ViewPager in android?

Fragment:

public class XYZFragment extends Fragment{

@Override
public void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    View v = LayoutInflater.from(getActivity()).inflate(R.layout.xyz_fragment,null);
    // all code implementations 

    return v;
}

I have lot of fragments which I want to bind in ViewPager


Mockup Image

Fragment Mockup

Request

If any solution for this then please share..
Thank you.

Upvotes: 0

Views: 192

Answers (1)

himanshurb
himanshurb

Reputation: 1115

FragmentStatePagerAdapter

Hope that helps. :)

Upvotes: 1

Related Questions