gpt4 book ai didi

Android:获取最新的 Intent

转载 作者:行者123 更新时间:2023-11-29 21:03:08 25 4
gpt4 key购买 nike

如何获取发送到 Activity 的最后一个 Intent ?

onNewIntent() 的文档建议我需要做这样的事情:

class MyActivity {
public void onNewIntent(Intent intent){
setIntent(intent);
reactToIntentAndDoStuff()
super.onNewIntent(Intent intent);
}
public void onCreate(){
reactToIntentAndDoStuff()
super.onCreate();
}
public void onResume(){
reactToIntentAndDoStuff()
super.onResume();
}
public void reactToIntentAndDoStuff(){
Intent intent = getIntent();
}
}

这看起来对吗?或者,还有更好的方法?我的 Activity 的 launchMode 将是 singleTop。它需要以或多或少相同的方式对相同的 Intent 使用react,无论它是否已经实例化。

最佳答案

我认为这是正确的方法:)请检查您是否真的需要在 onResume() 方法中调用 reactToIntentAndDoStuff()。我认为不需要。

super.onCreate();应该在 onCreate() 方法的第一行。

getIntent() 返回一个在 Activity 第一次启动时收到的 Intent。这不会更新,除非我们调用 setIntent(newIntent) 方法。

关于Android:获取最新的 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25396272/

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