在android studio中使用一个按钮在片段之间导航

f87krz0w  于 2021-07-03  发布在  Java
关注(0)|答案(0)|浏览(251)

我正在androidstudio中开发一个应用程序(使用java),它需要在3个屏幕之间切换,直到进入游戏。例如:

Screen A (user input and a question + button to continue) -> when pressing the button the input pass to the screen B
Screen B (user input and a question + button to continue) -> when pressing the button the input pass to the screen C
Screen C (user input and a question + button to continue) -> when pressing the button the input saved in DB and we start a new game.

这就像注册的过程,但是有多个屏幕。我的问题是如何使用片段实现这个功能?我认为,由于屏幕是相似的(唯一改变的是问题),片段将是最好的选择。但是当我尝试实现这个功能时,我没有成功地在3个屏幕之间切换按钮,只有2个。我也读过viewpager2,但在尝试使用它时出现了多个错误。另外,每个片段都需要保持前一个片段的输入+播放不同的记录。有什么好的实现来实现这个场景吗?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题