Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.73 KB | None | 0 0
  1. package fr.epita.tictactoe.tab;
  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.View.OnClickListener;
  8. import android.view.ViewGroup;
  9. import android.widget.RelativeLayout;
  10. import fr.epita.tictactoe.R;
  11.  
  12. public class HystoryFragment extends Fragment implements OnClickListener
  13. {
  14.     private RelativeLayout layout = null;
  15.  
  16.  
  17.     @Override
  18.     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
  19.     {
  20.         layout = (RelativeLayout) inflater.inflate(R.layout.fragment_hystory, null);
  21.  
  22.         return layout;
  23.     }
  24.  
  25.  
  26.     @Override
  27.     public void onClick(View arg0)
  28.     {
  29.  
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement