gpt4 book ai didi

android - 如何在延迟后从一项 Activity 重定向到另一项 Activity

转载 作者:可可西里 更新时间:2023-11-01 19:11:15 27 4
gpt4 key购买 nike

我正在开发一个安卓应用程序。在这个应用程序中,我想在 4 秒后自动从一个 Activity 转换到另一个 Activity 。如果没有按钮,我不知道该怎么做。

最佳答案

这是您可以继续的方式:

int timeout = 4000; // make the activity visible for 4 seconds

Timer timer = new Timer();
timer.schedule(new TimerTask() {

@Override
public void run() {
finish();
Intent homepage = new Intent(Activity1.this, Activity2.class);
startActivity(homepage);
}
}, timeout);

关于android - 如何在延迟后从一项 Activity 重定向到另一项 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9444586/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com