片段 A 通知片段 B

Fragment A Notify Fragment B

我在 FragA 中有一个函数 1,在 FragB 中有一个函数 2 我想要的是:当FragA使用function1时,它应该通知FragB使用functionB

那么最简单又好的方法是什么?

谢谢

从 func1 使用 FragmentManager.findFragmentByTag(或 byId)找到您的 B 片段,然后在该片段上调用您的函数。

或者您可以使用第三方偶数总线,例如 Otto

1.使用 EventBus

使用 EventBus 将事件发送到另一个片段。你可以试试Otto or EventBus

2。使用 FragmentManager 和 public 方法(我不喜欢这些)

正如@Alexander 所建议的,您可以获得对另一个片段的引用并调用它的方法

3。使用广播

您可以使用 LocalBroadcast 并在两个片段中附加一个接收器,以便在它们接收到广播时调用该方法。

以下是您问题的示例,它的代码非常粗糙,但可以让您了解如何实现您的要求。

你的activity应该是这样的FragmentTestOneActivity.java

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;

import test.spinner.one.FragmentA;
import test.spinner.one.FragmentB;

public class FragmentTestOneActivity extends AppCompatActivity implements FragmentA.MyEventMaker{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fragment_test_one);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);


    }

    @Override
    public void sendData(String text) {
        Log.d("FragmentTestOneActivity", "Text: "+text);
        FragmentB.setData(text);
    }
}

下面是上面activityactivity_fragment_test_one.xml

的布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#cf5f5b"
    android:orientation="horizontal"
    android:padding="10dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="some.fragment.one.FragmentTestOneActivity"
    tools:showIn="@layout/activity_fragment_test_one">

    <fragment
        android:id="@+id/fragment_one"
        android:name="test.spinner.one.FragmentA"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_margin="4dp"
        android:layout_weight="0.5"
        tools:layout="@layout/fragment_" />

    <fragment
        android:id="@+id/fragment_two"
        android:name="test.spinner.one.FragmentB"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_margin="4dp"
        android:layout_weight="0.5"
        tools:layout="@layout/fragment_b" />
</LinearLayout>

FragmentA.java

import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

/**
 * A simple {@link Fragment} subclass.
 */
public class FragmentA extends Fragment {

    private MyEventMaker myEventMaker;
    private Button button;

    public FragmentA() {
        // Required empty public constructor
    }

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        myEventMaker = (MyEventMaker)context;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_, container, false);
        button = (Button) view.findViewById(R.id.FragmentA_button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                myEventMaker.sendData("something");
            }
        });
        return view;
    }

    public interface MyEventMaker{
        void sendData(String text);
    }
}

fragment_a.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:background="#b1a2f3"
    tools:context="test.spinner.one.FragmentA">

    <Button
        android:id="@+id/FragmentA_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button" />
</LinearLayout>

片段B

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

/**
 * A simple {@link Fragment} subclass.
 */
public class FragmentB extends Fragment {

    private static TextView textView;

    public FragmentB() {
        // Required empty public constructor
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view =inflater.inflate(R.layout.fragment_b, container, false);
        textView = (TextView)view.findViewById(R.id.FragmentB_textView);
        return view;
    }

    public static void setData(String text){
        Log.d("FragmentB","Text: "+ text);
        textView.setText(""+text);
    }
}

fragment_b.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#efabca"
    android:gravity="center"
    tools:context="test.spinner.one.FragmentB">

    <TextView
        android:id="@+id/FragmentB_textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="" />

</LinearLayout>