将数据从Activity发送到已创建的Fragment

时间:2017-07-06 23:33:51

标签: android android-fragments android-activity interaction

我只找到了有关如何创建片段向其发送一些数据的信息,但仅限于使用构造函数进行实例化。

但我想知道是否可以从Activity中将一些数据(例如,两个Double对象)发送到Fragment,而无需创建Fragment的新实例。

先前已创建的片段。

3 个答案:

答案 0 :(得分:14)

只需在Fragment中添加要接收参数的方法,然后在Activity中调用该方法。

活动代码:

Activity's Code

片段代码:

Fragment's Code

答案 1 :(得分:1)

最简单的方法是在Fragment中定义一个接口并在活动中实现它。此链接应提供有关如何完成此操作的详细示例。 https://developer.android.com/training/basics/fragments/communicating.html

我认为您正在寻找的关键部分是:

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();
}

首先尝试通过调用findFragmentById(R.id.fragment_id)来检索片段,如果它不为null,则可以调用在接口中定义的方法向其发送一些数据。

答案 2 :(得分:1)

您可以通过以下数据包传输任何数据:

Bundle bundle = new Bundle();
bundle.putInt(key, value);
your_fragment.setArguments(bundle);

然后在你的片段中,用:

检索数据(例如在onCreate()方法中)
Bundle bundle = this.getArguments();
if (bundle != null) {
        int myInt = bundle.getInt(key, defaultValue);
}