如何让扩展SurfaceView的类启动一个Activity?

发布于 2024-10-14 18:51:05 字数 92 浏览 3 评论 0原文

所以我有一个类来绘制并完成游戏中的所有提升,它扩展了 SurfaceView。 我想开始一个新的活动来显示玩家死后的得分。 GameOver 活动有得分。 我该怎么做?

So I have a class that draws and does all the lifting in my game, which extends SurfaceView.
I want to start a new Activity that shows the score of the player after he dies.
The GameOver activity has the score.
How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月光色 2024-10-21 18:51:05
Context context = getContext(); // from MySurfaceView/Activity
Intent intent = new Intent(context, GameOver.class);
context.startActivity(intent);
Context context = getContext(); // from MySurfaceView/Activity
Intent intent = new Intent(context, GameOver.class);
context.startActivity(intent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文