getArguments()返回null!
活动代码:
if (savedInstanceState == null) {
// During initial setup, plug in the details fragment.
FlightListFragment listFragment =
FlightListFragment.newInstance(mSearchParams);
getSupportFragmentManager().beginTransaction().add(
android.R.id.content, listFragment).commit();
}
片段中的:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle
savedInstanceState) {
mSearchParams =
getArguments().getParcelable(SearchResultsActivity.EXTRA_SEARCH_PARAMS);
return super.onCreateView(inflater, container, savedInstanceState);
}
和
public static FlightListFragment newInstance(SearchParams sp) {
FlightListFragment f = new FlightListFragment();
Bundle b = new Bundle();
b.putParcelable(SearchResultsActivity.EXTRA_SEARCH_PARAMS, sp);
f.setArguments(b);
return f;
}
但我总是在这里得到NullPointerException:getArguments()。
请解释一下我做错了什么
谢谢!
:
我发现在onCreateView之后调用newInstance()方法,所以我将代码从它移到了onCreate,但问题没有避免。
答案 0 :(得分:10)
这意味着在片段实例化时没有提供任何参数......
你可以通过做这样的事情来检查是否提供了参数......
Bundle arguments = getArguments();
if (arguments != null)
{
// then you have arguments
} else {
// no arguments supplied...
}
好的 - 我误解了你的问题...
在执行putParcelable时,sp是否为空?