Android best practices for Fragment to Activity communications

后端 未结 5 1682
误落风尘
误落风尘 2021-01-18 10:42

I am new to Android Fragment and trying to learn Fragment to Activity communications. What is the better approach(best practice) in Android for Fragment to Activity communic

5条回答
  •  梦毁少年i
    2021-01-18 10:43

    Your second approach is more flexible. You might not see a huge benefit in one activity and one fragment case. If you have to use the same fragment in another activity, it will most likely break by casting your activity like that. That said, there is nothing wrong with the first approach, but it is just a little restricted.

提交回复
热议问题