| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.uas.module.news;
- import android.os.Bundle;
- import android.support.v4.app.Fragment;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.view.ViewGroup;
- import com.uas.module.common.base.BaseFragment;
- /**
- * A simple {@link Fragment} subclass.
- */
- public class NewsFragment extends BaseFragment {
- /**
- * Use this factory method to create a new instance of
- * this fragment using the provided parameters.
- *
- * @return A new instance of fragment NewsFragment.
- */
- public static NewsFragment newInstance() {
- return new NewsFragment();
- }
- public NewsFragment() {
- // Required empty public constructor
- }
- @Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container,
- Bundle savedInstanceState) {
- // Inflate the layout for this fragment
- return inflater.inflate(R.layout.fragment_news, container, false);
- }
-
- }
|