Hello there, I try to arrange methods in following order:
- onAttach(Activity)
- onCreate(Bundle)
- onCreateView(LayoutInflater, ViewGroup, Bundle)
- onActivityCreated(Bundle)
- onViewStateRestored(Bundle)
onStart()
etc.
But I don't know what rules should I apply to achive this. I tried following patterns onAttach, onAttach.*, .*onAttach.* and nothing helps. Thats why any help would be appreceated.