创建Fragment和传递数值

Posted kim_liu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建Fragment和传递数值相关的知识,希望对你有一定的参考价值。

下面在扩展一下创建Fragment和传递数值

如果我们不需要传递数值,那就直接可以在宿主activity中,跟平常一样创建fragment,但是如果我们需要传递数据的话,可以使用newInstance(数据)方法来传递,这个方法是自己定义的,但是是定义在Fragment中的一个静态方法。

static MyFragment newInstance(String s){
        MyFragment myFragment = new MyFragment();
        Bundle bundle = new Bundle();
        bundle.putString("DATA",s);
        myFragment.setArguments(bundle);
        return myFragment;
    }

//同样,在onCreatView中直接获取这个值
 @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.layout_fragment,container,false);
        Bundle bundle = getArguments();
        String data = bundle.getString("DATA");
        tv = (TextView) view.findViewById(R.id.id_fm_tv);
        if(data != null){
            tv.setText(data);
        }
        return view;
    }

 

在宿主activity中,创建Fragment

 FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        fragmentTransaction.setCustomAnimations(android.R.anim.fade_in,android.R.anim.fade_out);
        fragment1 = MyFragment.newInstance("这是第一个fragment");//这里只需要直接调用这个方法,就创建了一个fragment
        fragment2 = MyFragment.newInstance("这是第二个fragment");
        fragment3 = MyFragment.newInstance("这是第三个fragment");

以上是关于创建Fragment和传递数值的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Fragment 之间传递值

将数据从 Fragment 传递到另一个 Fragment

完全下载文件时,将下载的文件从一个片段传递到另一个片段

Android------------fragment数据传递

如何通过代码设置片段标签?

如何将变量从 Activity 传递到 Fragment,并将其传回?