我的 NDK-android 线程上的“退出命令”(返回主程序)
我正在运行一个主程序。我有一个启动本机活动的按钮(http://developer.android.com /reference/android/app/NativeActivity.html)
我正在寻找返回主程序的命令。
该命令的作用与我按后退按钮时的作用相同。
所以我可以让本机活动在 X 秒后返回主程序。
I'm running a main program. I have a button to start native-activity(http://developer.android.com/reference/android/app/NativeActivity.html)
I am looking for a command to return back to my main program.
That is a command that does the same as when i press the back button.
So i can have the native-activity return back to the main program after X seconds.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用 finish() 方法来关闭当前活动并返回到调用它的其他活动。
You can call the finish() method to close your current activity and return to whichever other activity called it.