Advertisement
GarryLaly

TabSatuFragment.java

May 31st, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. package garrypriambudi.me.tutorialhalamanprofil;
  2.  
  3. import android.os.Bundle;
  4. import android.support.v4.app.Fragment;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8.  
  9. public class TabSatuFragment extends Fragment {
  10.  
  11.     public TabSatuFragment() {
  12.         // Required empty public constructor
  13.     }
  14.  
  15.     @Override
  16.     public void onCreate(Bundle savedInstanceState) {
  17.         super.onCreate(savedInstanceState);
  18.     }
  19.  
  20.     @Override
  21.     public View onCreateView(LayoutInflater inflater, ViewGroup container,
  22.                              Bundle savedInstanceState) {
  23.         // Inflate the layout for this fragment
  24.         return inflater.inflate(R.layout.fragment_tab_satu, container, false);
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement