Reputation: 2316
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;
}
lot of fragments
which I want to bind in ViewPager
If any solution for this then please share..
Thank you.
Upvotes: 0
Views: 192