document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package com.dedykuncoro.kuncoronavdrawer;
  2.  
  3. import android.app.Fragment;
  4. import android.os.Bundle;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8. import android.widget.RelativeLayout;
  9.  
  10. /**
  11. * Created by Kuncoro on 22/03/2016.
  12. */
  13. public class Gallery extends Fragment {
  14.  
  15. public Gallery(){}
  16. RelativeLayout view;
  17.  
  18. @Override
  19. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  20. Bundle savedInstanceState) {
  21.  
  22. view = (RelativeLayout) inflater.inflate(R.layout.gallery, container, false);
  23.  
  24. getActivity().setTitle("Gallery");
  25.  
  26. return view;
  27. }
  28. }
');