在 fragment 里面调用 findViewById

落花浮王杯 提交于 2020-02-23 11:50:54

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

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