How to send data from Activity to Fragment

前端 未结 5 1848
盖世英雄少女心
盖世英雄少女心 2020-12-05 21:44

I know there are many topics about this here. I have also read documentation many times but I can\'t find the best way to pass data from activity to fragment.

I want

5条回答
  •  既然无缘
    2020-12-05 22:10

    Usually the activities will have a reference to their fragments. In your SearchableActivity.java are you also loading PlaceListFragment.java either in setContentView(activity_searchable.xml); or you need to create a instance of the fragment and add/replace a fragment using FragmentTransaction.

    you can find a good example here on how to communicated between fragments or between activity & fragment.

    Training link

提交回复
热议问题