(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
| 58 | HashMap<String, String> authorities = new HashMap<String, String>(); |
| 59 | |
| 60 | @Override |
| 61 | public View onCreateView(LayoutInflater inflater, ViewGroup container, |
| 62 | Bundle savedInstanceState) { |
| 63 | setHasOptionsMenu(true); |
| 64 | context = (MainActivity) getActivity(); |
| 65 | scope = new AppScope(this); |
| 66 | rootView = inflater.inflate(R.layout.fragment_sync_wizard, container, |
| 67 | false); |
| 68 | getActivity().setTitle(R.string.title_configuration); |
| 69 | getActivity().getActionBar().setDisplayHomeAsUpEnabled(false); |
| 70 | getActivity().getActionBar().setHomeButtonEnabled(false); |
| 71 | |
| 72 | generateLayout(); |
| 73 | |
| 74 | return rootView; |
| 75 | } |
| 76 | |
| 77 | private void generateLayout() { |
| 78 |
nothing calls this directly
no test coverage detected