0
我在ViewPager中有一個非常基本的片段。該片段包含一個線性佈局。當我嘗試調整的LinearLayout我從一個的LinearLayout異常空指針的內容:動態更改片段上的LinearLayout
//父活動(這包含尋呼機)
public void goToUnit(Unit unit) {
((UnitFragment) this._cupAdapter.getItem(1)).LoadUnitContent(unit);
_pager.setCurrentItem(1, true);
}
//片段
public void LoadUnitContent(Unit latestUnit)
{
this.set_unit(latestUnit);
if(latestUnit != null) {
View v = this.getView(); //-- this shows as null
LinearLayout ll = (LinearLayout)v.findViewById(R.id.llExplanation);
}
}
似乎在onCreateView設置的所有變量現在爲空,當我嘗試從這種方法訪問它們...
任何幫助將不勝感激。