Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package samples.exoguru.materialtabs;
  2.  
  3. import android.os.Bundle;
  4. import android.support.annotation.Nullable;
  5. import android.support.v4.app.Fragment;
  6. import android.view.LayoutInflater;
  7. import android.view.View;
  8. import android.view.ViewGroup;
  9.  
  10. /**
  11. * Created by Edwin on 15/02/2015.
  12. */
  13. public class Tab2 extends Fragment {
  14.  
  15. @Override
  16. public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  17. View v =inflater.inflate(R.layout.tab_2,container,false);
  18. return v;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement