Attempt to invoke virtual method

前端 未结 3 1697
北海茫月
北海茫月 2020-12-10 13:11

I am trying to get some LinearLayoutsin my onCreateView but my App is crashing with the following message:

23430-23430/? W/System.e         


        
3条回答
  •  我在风中等你
    2020-12-10 13:56

    You're calling getView() too early - it will only return the view you return yourself from onCreateView().

    Inside onCreateView() use the recently inflated rootView instead of getView().

提交回复
热议问题