I am trying to get some LinearLayoutsin my onCreateView but my App is crashing with the following message:
LinearLayouts
onCreateView
23430-23430/? W/System.e
You're calling getView() too early - it will only return the view you return yourself from onCreateView().
getView()
onCreateView()
Inside onCreateView() use the recently inflated rootView instead of getView().
rootView