gpt4 book ai didi

android - 为什么 OnNewIntent() 中的代码被执行了两次?

转载 作者:太空狗 更新时间:2023-10-29 16:37:28 27 4
gpt4 key购买 nike

我在我的主要 Activity 中使用 singleTop 模式。我正在使用 SearchWidget

这是我的 MainAcivity 的 list :

<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop" >

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.SEARCH" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>

onNewIntent 被调用了两次:

protected void onNewIntent(Intent intent) {


if (Intent.ACTION_SEARCH.equals(intent.getAction())) {

// here is my code

}

}

为什么会这样?

最佳答案

您是否使用硬件键盘执行搜索?如果是,则双重执行是一个已知但从未修复的 Android 错误。

您可能想尝试使用整数锁定变量来避免重复执行。

我的 Android 4.2.2 设备存在同样的问题。在 Android 模拟器中观察到类似的行为。

关于android - 为什么 OnNewIntent() 中的代码被执行了两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25142119/

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