标签: android surfaceview dialog android-framelayout
如何在FrameLayout中的视图之间切换?例如,我在FrameLayout中有一个SurfaceView,我希望它在游戏结束时显示DialogBox以接收用户文本输入。我假设DialogBox将被存储为FrameLayout中的另一个视图,但我该如何实际显示它?我需要从SurfaceView中调用它,因为当SurfaceView中发生某些事情时,需要显示DialogBox。
答案 0 :(得分:4)
使用bringChildToFront(view)在其他子视图上方显示任何子视图。
bringChildToFront(view)
答案 1 :(得分:1)
有关Creating Dialogs