<pre class="brush:java;toolbar:false">publicclassCompanyListFragmentextendsFragment{
privateActivityactivity;
privateListViewcompanyListView;
@Override
publicViewonCreateView(LayoutInflaterinfalter,ViewGroupcontainer,BundlesavedInstanceState){
Viewview=infalter.inflate(R.layout.companylist_for_sport,container,false);
companyListView=(ListView)view.findViewById(R.id.companyListView);
returnview;
}
}</pre><p>注意1: 是在 onCreateView 中</p><p>注意2: 是 view.findViewById 而不是 activity.findViewById</p>