Android-Fragment与Fragment通信

同一个Activity中不同Fragment之间传值:

  • 方式1:调用getFragmentManager().findFragmentById()获取Fragment对象,然后调用其方法。

  • 方式2:调用getFragmentManager().findFragmentById().getView().findViewById()根据id获取activity中的fragment对象,再获取fragment的视图,根据id获取视图中的控件对象。

  • 方式3:getActivity().findViewById()直接获取当前Activity,并根据id获取view控件对象。

  • 项目代码目录
    Android-Fragment与Fragment通信_第1张图片

  • LeftFragment.java

public class LeftFragment extends Fragment {
    private EditText mEditText;
    private Button mButton;
    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_left, null);
        mEditText = view.findViewById(R.id.et_content);
        mButton = view.findViewById(R.id.btn_pass);
        mButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                String str = mEditText.getText().toString().trim();
//                方式1:可以调用findFragmentById()方法根据id获取fragment对象,调用fragment中的方法赋值
               /* RightFragment right = (RightFragment) getFragmentManager().findFragmentById(R.id.rightFragment);
                right.setTextView(str);*/

//               方式2:先调用getFragmentManager()获取fragmentManager对象,然后调用findFragmentById()方法获取右侧的fragment
//                然后再调用getView()获取右侧fragment的view对象,最后调用view的findViewById()获得赋值的控件
                /*TextView tv = getFragmentManager().findFragmentById(R.id.rightFragment).
                        getView().findViewById(R.id.tv_show);
                tv.setText(str);*/

//                方式3:先调用getActivity()方法获取所属的activity对象,然后调用findViewById()获取目标控件
                TextView tv = getActivity().findViewById(R.id.tv_show);
                tv.setText(str);
            }
        });
        return view;
    }
}
  • fragment_left.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <EditText
        android:id="@+id/et_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入要发送的数据"/>
    <Button
        android:id="@+id/btn_pass"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="点击发送"
        android:layout_gravity="center"
        android:background="@android:color/holo_blue_dark"
        android:layout_marginTop="30dp"/>
LinearLayout>
  • RightFragment.java
public class RightFragment extends Fragment {
    private TextView tv_show;

    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_right, null);
        tv_show = view.findViewById(R.id.tv_show);
        return view;
    }
//    定义函数给TextView赋值
    public void setTextView(String text) {
        tv_show.setText(text);
    }
}
  • fragment_right.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/tv_show"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="25sp"
        android:gravity="center"
        android:textColor="@android:color/holo_blue_dark"
        android:text="默认显示"/>
LinearLayout>
  • activity_main.xml

<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:orientation="horizontal"
    tools:context=".MainActivity">

    <fragment
        android:id="@+id/leftFragment"
        android:name="com.example.fragfrag.fragment.LeftFragment"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>
    <fragment
        android:id="@+id/rightFragment"
        android:name="com.example.fragfrag.fragment.RightFragment"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>
LinearLayout>
  • MainActivity.java
public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}
  • 最终效果图:
    Android-Fragment与Fragment通信_第2张图片
    当在左侧fragment里的EditText输入文本内容,再点击【点击发送】按钮,文本在右侧的fragment中显示。

你可能感兴趣的:(Android)