Android: Where to put activity's onCreate() code in a fragment?

穿精又带淫゛_ 提交于 2019-12-29 03:28:32

问题


I'm converting all my Activities to Fragments so that I can use them in a ViewPager.

I've searched for this but I couldn't find a satisfying answer, so that's why I'm asking it here.

In my Activities, I've written some code in the onCreate() method. I for example call some findViewById()s in order to link some xml-buttons to my Activity. I also make some views invisible in the onCreate(), set an OnClickListener(), fill a TextView with text and remove a Notification, all in the onCreate() method.

My question is: Where should I put this code in the fragment? In the onCreate()? onCreateView()? onActivityCreated()? and why?

Many thanks in advance!


回答1:


Although Pragnani's answer is close, there's little educational value in it. Besides, there's a more appropriate option to his 2nd statement.

Where should I put this code in the fragment? In the onCreate()? onCreateView()? onActivityCreated()? and why?

The short answer is: either onCreateView() or onActivityCreated() will do. The view hierarchy won't be created until onCreateView(), so that's the earliest point in the fragment's life cycle that you could inflate the views and attach click listeners etc. Since onActivityCreated() will always be run after onCreateView(), that's a suitable location too. onCreate() may be skipped in favour of the system temporarily detaching the fragment and reattaching it, e.g. when retaining fragments.

Pragnani is correct by pointing out that inflating the views of a fragment is slightly different from inflating views in an activity. More specifically: a fragment does not define a findViewById() method, so you'll need to call it on some other object.

Rather than using getActivity().findViewById(), you'll want getView().findViewById(). The reason for this is that if you use the activity for the view lookups, then you'll get into trouble when multiple fragments with the same view IDs are attached to it. This will be the case if you reuse view ids in the layouts of your various fragments, or if you show two identical fragments that display different data. In both cases, only the first match would ever be returned, whereas you really want to the view to be looked up in the conext of the fragment. That's exactly what getView() returns, the fragment's root view (that you returned in onCreateView()), and thus limits the scope of the lookup appropriately.




回答2:


1.Left the onCreate empty and just call super.onCreate()

2.Instead of findViewById() use getActivity().findViewById() always use getActivity() where you need context of the view.

 Do all other operations in onCreateview()


来源:https://stackoverflow.com/questions/15277862/android-where-to-put-activitys-oncreate-code-in-a-fragment

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!