Skip to content

Instantly share code, notes, and snippets.

@manishkpr
Created December 30, 2016 09:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishkpr/6ca2ba030c31b22e88f559ab36bece51 to your computer and use it in GitHub Desktop.
Save manishkpr/6ca2ba030c31b22e88f559ab36bece51 to your computer and use it in GitHub Desktop.
package com.manishkpr.viewpager;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class LayoutTwo extends Fragment {
public static Fragment newInstance(Context context) {
LayoutTwo f = new LayoutTwo();
return f;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
ViewGroup root = (ViewGroup) inflater.inflate(R.layout.layout_two, null);
return root;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment