What is different between getContext and getActivity from Fragment in support library?

前端 未结 8 779
深忆病人
深忆病人 2020-12-02 15:39

What is different between getContext() and getActivity() from Fragment in support library?

Do they always return the same obje

8条回答
  •  难免孤独
    2020-12-02 15:58

    Activity is a subclass of Context. Activity has also Window elements and access to UI methods, Context doesn't. However, in the majority of the cases, it's the same if you need only the Context.

提交回复
热议问题