如何在片段及其容器活动之间传递数据?是否有类似于通过意图在活动之间传递数据的东西?
我读了这个,但没有多大帮助:http: //developer.android.com/guide/topics/fundamentals/fragments.html#CommunicatingWithActivity
在您的片段中,您可以调用 getActivity().
getActivity()
这将使您能够访问创建片段的活动。从那里您显然可以调用活动中的任何类型的访问器方法。
例如,对于getResult()您的 Activity 调用的方法:
getResult()
((MyActivity) getActivity()).getResult();