Guest User

Untitled

a guest
Jul 15th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. package tabian.com.instagramclone.Profile;
  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. import tabian.com.instagramclone.R;
  11.  
  12.  
  13. /**
  14. * Created by User on 6/29/2017.
  15. */
  16.  
  17. public class ProfileFragment extends Fragment {
  18.  
  19. private static final String TAG = "ProfileFragment";
  20.  
  21. @Nullable
  22. @Override
  23. public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  24. View view = inflater.inflate(R.layout.fragment_profile, container, false);
  25.  
  26.  
  27. return view;
  28. }
  29. }
Add Comment
Please, Sign In to add comment