如何在Fragment中扩展的类中查找视图?

时间:2011-08-09 14:25:47

标签: android

如何在viewclass延长的Fragment中找到ListFragment?如果我试试

Button newItemBtn = (Button)getView().findViewById(R.id.bt_add_item);

我没有收到我的观点,这意味着它没有找到。怎么找到它?

2 个答案:

答案 0 :(得分:4)

android fragment docs州:

 View listView = getActivity().findViewById(R.id.list);

答案 1 :(得分:4)

答案是您必须使用onActivityCreated()方法,而不是onCreate()