PageRenderTime 38ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/hfr4droidHD/src/info/toyonos/hfr4droidhd/fragment/PostsFragment.java

http://hfr4droid.googlecode.com/
Java | 17 lines | 15 code | 2 blank | 0 comment | 0 complexity | ca69cde8d29f4eee6e736c7c2a385c1e MD5 | raw file
  1. package info.toyonos.hfr4droidhd.fragment;
  2. import info.toyonos.hfr4droidhd.R;
  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. public class PostsFragment extends Fragment
  9. {
  10. @Override
  11. public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
  12. {
  13. return inflater.inflate(R.layout.posts, container, false);
  14. }
  15. }