在解雇时试图从片段中获取值时遇到了一些问题。我的片段A将打开片段B,当单击片段B中的按钮时,我想获取一个值并传递回片段A进行显示。但是,我不确定该怎么做。
片段A:
@Click(R.id.buttonAttach)
void buttonAttachClicked(View v){
SupportAttachFileFragment fragment = new SupportAttachFileFragment_();
fragment.show(getFragmentManager(), null);
// get value here and display
textViewLogCounter.setText();
}
}
片段B:
单击此按钮后,我想将值传递回片段A并显示。
@Click(R.id.buttonAttach)
void buttonAttachClicked(View v){
System.out.println("TOTAL " + selectedRows.size());
dismiss();
}
我不确定该怎么做。我当时在考虑Bundle,但Bundle是将参数传递给新活动。在这种情况下,我的片段已经打开,但是我想将一些值传回。
有什么想法吗?谢谢!
答案 0 :(得分:2)
您可以使用共享的ViewModel
。在活动范围内创建ViewModel,它将可用于活动及其所有片段。
MyViewModel sharedViewModel = ViewModelProviders.of(getActivity()).get(MyViewModel::class.java)
然后观察sharedViewModel
的需求数据。如果您在任何片段或活动中更改sharedViewModel
的数据,则所有片段和活动的数据都会更改。请参见下图或阅读doc。
答案 1 :(得分:1)
所有片段到片段的通信都是通过共享的ViewModel或通过关联的活动来完成的。两个片段永远不要直接通信。
片段到片段通信的不同方式:
您可以在Fragment类中define an interface并在Activity中实现它。片段在其onAttach()生命周期方法中捕获接口实现,然后可以调用Interface方法以与Activity通信。
公共类HeadlinesFragment扩展了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
}
}
向片段发送邮件
主机活动可以通过使用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();
}
}
}
Check Official Documentation了解详细说明。
希望这会有所帮助。
答案 2 :(得分:1)
要在片段之间共享数据,可以使用ViewModel。
视图模型提供了活动的不同片段之间的通信层。 要关闭片段的数据,还可以使用onActivityResult。
有关详细示例,请点击此链接- Android: Passing data from child fragment to parent fragment