Method
onCreateView
(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
Source from the content-addressed store, hash-verified
| 58 | Dialog dialog = null; |
| 59 | |
| 60 | @Override |
| 61 | public View onCreateView(LayoutInflater inflater, ViewGroup container, |
| 62 | Bundle savedInstanceState) { |
| 63 | setHasOptionsMenu(true); |
| 64 | rootView = inflater.inflate(R.layout.fragment_account_user_profile, |
| 65 | container, false); |
| 66 | scope = new AppScope(this); |
| 67 | scope.main().setTitle(R.string.title_user_profile); |
| 68 | |
| 69 | setupView(); |
| 70 | return rootView; |
| 71 | } |
| 72 | |
| 73 | private void setupView() { |
| 74 | |
Callers
nothing calls this directly
Tested by
no test coverage detected