在 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

posted @ 2014-12-26 14:07  Ken-Cai  阅读(12999)  评论(0编辑  收藏  举报