Android - Passing value from ListFragment to another ListFragment

后端 未结 4 475
借酒劲吻你
借酒劲吻你 2021-01-24 07:14

I have a listview containing Category of items. When I press a category title on the list, it will display another listview containing items inside the chosen Category.

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-24 08:00

    Communication Between Two Fragment is Done Via Activity using Interface

    Fragment A-------------------------->Activity-------------------->Fragment B

    (defines Interface) (implements interface) ( pass to Fragment B)

    Doc reference is Here

提交回复
热议问题