Guest User

Untitled

a guest
Sep 14th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. package abelpinheiro.github.io.bookstore.Fragment;
  2.  
  3.  
  4. import android.os.Bundle;
  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 abelpinheiro.github.io.bookstore.R;
  11.  
  12. /**
  13. * A simple {@link Fragment} subclass.
  14. */
  15. public class AddBookFragment extends Fragment {
  16.  
  17.  
  18. public AddBookFragment() {
  19. // Required empty public constructor
  20. }
  21.  
  22.  
  23. @Override
  24. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  25. Bundle savedInstanceState) {
  26. // Inflate the layout for this fragment
  27. return inflater.inflate(R.layout.fragment_add_book, container, false);
  28. }
  29.  
  30. }
Add Comment
Please, Sign In to add comment