您正在执行:
stackView = (StackView) getActivity().findViewById(R.id.stackView1);
你
stackView是
null。
getActivity().findViewById返回
null。
你为什么用
getActivity()?
在哪里
stackView?您应该从正确的xml加载它。
如@Tauqir所述,您需要像这样膨胀正确的xml:
View view = inflater.inflate(R.layout.events_layout, null);stackView = (StackView) view.findViewById(R.id.stackView1);return view;



