如何在5秒后自动显示活动?
在我的应用程序中,我在 Android 中创建了一个闪屏类型的东西。它应该保持 5 秒钟。
我的问题是如何在 5 秒后自动显示另一个活动?
启动屏幕没有按钮,而是应该在 5 秒后自动显示另一个活动,而无需单击按钮。
In my application I have created a splash screen type of thing in Android. It should remain for 5 seconds.
My problem is how do I display another activity automatically after 5 secs?
The splash screen doesn't have a button, rather it should display another activity automatically after 5 seconds without the click of a button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
和
and
您可以在此处使用线程
例如
You can use thread here
For example
这也可以使用 android CountDownTimer 类来完成。
请参阅此示例了解
5 秒
延迟。您可能还需要在 AndroidManifest.xml 文件中定义父 Activity,
This can also be done using android
CountDownTimer
class.See this example for
5seconds
delay.You may also need to define your parent activity in
AndroidManifest.xml
file,