Fragment onViewCreated 的作用
onViewCreated 這個也是自己經常使用的到的,今天禮拜天在家復習知識點 這里記錄一下
Fragment 是?3.0版本 API 11 的時候引入的,剛開始的時候并沒有onViewCreated ,
它是在API 13的時候引入的 估計這個就是為啥Fragment 生命周期里面沒有onViewCreated吧
但是onViewCreated 在Fragment 是有體現的
自己的測試如下
那我們使用呢如下
@Nullable@Overridepublic View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {View view = inflater.inflate(R.layout.order_food_fragment_layout, container, false);Log.e("=======onCreateView","onCreateView");return view;}@Overridepublic void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {super.onViewCreated(view, savedInstanceState);Log.e("=========onViewCreated","onViewCreated");textView = view.findViewById(R.id.food);textView.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {}});}
我們使用的時候也很便 它返回fragment要顯示的布局view ,這樣我們在指定布局的時候就簡單的多了 ,在findViewById前面添加一個view 即可
最后看下文檔上面提到的
Called immediately after onCreateView(LayoutInflater, ViewGroup, Bundle) has returned, but before any saved state has been restored in to the view. This gives subclasses a chance to initialize themselves once they know their view hierarchy has been completely created. The fragment's view hierarchy is not however attached to its parent at this point.
?
?
?
總結
以上是生活随笔為你收集整理的Fragment onViewCreated 的作用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 哥布林杀手是谁画的呢?
- 下一篇: 苹果6要多少钱啊?