为了重用Fragment UI组件,您应该将每个组件构建为一个完全独立的模块化组件,以定义自己的布局和行为。一旦定义了这些可重用的片段,就可以将它们与Activity
相关联,并将它们与应用程序逻辑相连接,以实现整个复合UI。
通常,您会希望一个片段与另一个片段进行通信,例如根据用户事件更改内容。所有片段到片段的通信都是通过共享的ViewModel
或通过关联的Activity
完成的。两个碎片不应该直接通信。
片段之间通信的推荐方法是创建共享的ViewModel
对象。两个片段都可以通过其包含的Activity
访问ViewModel
。 Fragments
可以更新ViewModel
中的数据,如果使用LiveData
公开数据,只要从ViewModel
观察LiveData
,新状态就会被推送到另一个片段。要了解如何实现此类通信,请阅读ViewModel
指南中的“在片段之间共享数据”部分。
如果您无法使用共享ViewModel
在Fragments
之间进行通信,则可以使用接口手动实现通信流。然而,这最终需要更多的工作来实现,并且在其他片段中不容易重复使用。
一、定义接口
要允许Fragment
与其Activity
进行通信,您可以在Fragment
类中定义接口并在Activity
中实现它。 Fragment
在其onAttach()
生命周期方法中捕获接口实现,然后可以调用Interface
方法以与Activity
通信。
以下是Fragment to Activity通信的示例:
public class HeadlinesFragment extends ListFragment {
OnHeadlineSelectedListener mCallback;
// Container Activity must implement this interface
public interface OnHeadlineSelectedListener {
public void onArticleSelected(int position);
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
// This makes sure that the container activity has implemented
// the callback interface. If not, it throws an exception
try {
mCallback = (OnHeadlineSelectedListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnHeadlineSelectedListener");
}
}
...
}
现在,片段可以通过使用OnHeadlineSelectedListener
接口的mCallback
实例调用onArticleSelected()
方法(或接口中的其他方法)来向活动传递消息。
例如,当用户单击列表项时,将调用片段中的以下方法。 该片段使用回调接口将事件传递给父活动。
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
// Send the event to the host activity
mCallback.onArticleSelected(position);
}
二、实现接口
为了从片段接收事件回调,托管它的活动必须实现片段类中定义的接口。
例如,以下活动实现了上面示例中的接口。
public static class MainActivity extends Activity
implements HeadlinesFragment.OnHeadlineSelectedListener{
...
public void onArticleSelected(int position) {
// The user selected the headline of an article from the HeadlinesFragment
// Do something here to display that article
}
}
三、向Fragment发送消息
主机活动可以通过使用findFragmentById()
捕获Fragment
实例来将消息传递给片段,然后直接调用片段的公共方法。
例如,假设上面显示的活动可能包含另一个片段,该片段用于显示由上述回调方法返回的数据指定的项目。 在这种情况下,活动可以将回调方法中收到的信息传递给将显示该项目的另一个片段:
public static class MainActivity extends Activity
implements HeadlinesFragment.OnHeadlineSelectedListener{
...
public void onArticleSelected(int position) {
// The user selected the headline of an article from the HeadlinesFragment
// Do something here to display that article
ArticleFragment articleFrag = (ArticleFragment)
getSupportFragmentManager().findFragmentById(R.id.article_fragment);
if (articleFrag != null) {
// If article frag is available, we're in two-pane layout...
// Call a method in the ArticleFragment to update its content
articleFrag.updateArticleView(position);
} else {
// Otherwise, we're in the one-pane layout and must swap frags...
// Create fragment and give it an argument for the selected article
ArticleFragment newFragment = new ArticleFragment();
Bundle args = new Bundle();
args.putInt(ArticleFragment.ARG_POSITION, position);
newFragment.setArguments(args);
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
// Replace whatever is in the fragment_container view with this fragment,
// and add the transaction to the back stack so the user can navigate back
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);
// Commit the transaction
transaction.commit();
}
}
}
要了解有关实现片段的更多信息,请参阅片段。 您还可以通过浏览相关的示例应用了解更多信息。