一、使用Bundle传递数据
在Fragment中可以通过创建Bundle对象将数据传递给另外一个Fragment或者Activity。
// 创建一个Bundle对象,并将数据添加到Bundle中
Bundle bundle = new Bundle();
bundle.putString("key", value);
// 将Bundle对象设置到Intent中
YourFragment fragment = new YourFragment();
fragment.setArguments(bundle);
// 在另外一个Fragment或者Activity中获取数据
Bundle bundle = getArguments();
if (bundle != null) {
String value = bundle.getString("key");
}
二、使用接口回调传递数据
Fragment可以通过定义接口和回调方法,将数据传递给上层的Activity或者其他Fragment。
首先,在Fragment中定义接口和回调方法:
public interface OnDataPass {
public void onDataPass(String data);
}
private OnDataPass dataPasser;
@Override
public void onAttach(Context context) {
super.onAttach(context);
dataPasser = (OnDataPass) context;
}
// 在需要传递数据的地方调用回调方法
dataPasser.onDataPass(data);
在Activity或者其他Fragment中实现接口和回调方法:
public class MainActivity extends AppCompatActivity implements YourFragment.OnDataPass {
// 重写回调方法
@Override
public void onDataPass(String data) {
// 处理传递过来的数据
}
}
三、使用ViewModel传递数据
ViewModel可以将数据在Fragment间共享,即便是Activity销毁重建也不会丢失数据。
首先需要添加ViewModel依赖:
dependencies {
def lifecycle_version = "2.3.1"
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
}
在Fragment中创建ViewModel对象:
// 创建ViewModel对象
YourViewModel viewModel = new ViewModelProvider(this).get(YourViewModel.class);
// 将数据设置到ViewModel中
viewModel.setData(data);
// 在其他Fragment或者Activity中获取数据
YourViewModel viewModel = new ViewModelProvider(requireActivity()).get(YourViewModel.class);
String data = viewModel.getData();
以上就是在Android Fragment中实现数据传递的三种常用方式。使用Bundle传递数据可靠性高,但对数据大小有限制。使用接口回调传递数据适用于简单的数据传递场景。而使用ViewModel传递数据则适用于需要在多个Fragment或者Activity间共享数据的情况。