-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDevelopersFragment.java
49 lines (39 loc) · 1.35 KB
/
DevelopersFragment.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package info.androidhive.materialdesign.activity;
import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import info.androidhive.materialdesign.R;
/**
* A simple {@link Fragment} subclass.
* Activities that contain this fragment must implement the
* {@link ReportFragment.OnFragmentInteractionListener} interface
* to handle interaction events.
* Use the {@link ReportFragment#newInstance} factory method to
* create an instance of this fragment.
*/
public class DevelopersFragment extends android.support.v4.app.Fragment {
public DevelopersFragment() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_developers, container, false);
// Inflate the layout for this fragment
return rootView;
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
}
@Override
public void onDetach() {
super.onDetach();
}
}