首页 > 代码库 > 在 fragment 里面调用 findViewById
在 fragment 里面调用 findViewById
public class CompanyListFragment extends Fragment {
private Activity activity;
private ListView companyListView;
@Override
public View onCreateView(LayoutInflater infalter, ViewGroup container, Bundle savedInstanceState) {
View view = infalter.inflate(R.layout.companylist_for_sport, container, false);
companyListView = (ListView)view.findViewById(R.id.companyListView);
return view;
}
}
注意1: 是在 onCreateView 中
注意2: 是 view.findViewById 而不是 activity.findViewById
在 fragment 里面调用 findViewById
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。