What is the difference between getView() and getActivity()?

前端 未结 2 1854
我在风中等你
我在风中等你 2021-01-18 12:12

What is the difference between getView() and getActivity()?

I have used both methods but don\'t understand the basic difference even method

2条回答
  •  生来不讨喜
    2021-01-18 12:34

    getActivity() returns the Activity hosting the Fragment, while getView() returns the view you inflated and returned by onCreateView. The latter returns a value != null only after onCreateView returns

提交回复
热议问题