gpt4 book ai didi

android - 如果已经运行,则阻止启动主要 Activity

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:16:15 25 4
gpt4 key购买 nike

我有一个通过 intent-filter 操作启动的应用程序。问题是每次事件/ Action 发生时,Android 都会显示一个对话框,要求启动该应用程序,即使它已经启动。

我希望行为如下:

  • 如果应用未打开,用户要求启动应用。
  • 如果应用程序在前台运行,则不会显示对话框。

有没有办法同时实现这两个目标?我的目标是 Android 4.0。

编辑

这是我的 Intent 过滤器:

        <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>

<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
</intent-filter>

<meta-data
android:name="android.hardware.usb.action.USB_DEVICE_DETACHED"
android:resource="@xml/device_filter" />

最佳答案

您需要将ActivitylaunchMode 设置为singleTask。您可以通过在 Android Manifest 中添加 activity 属性来做到这一点:

android:launchMode="singleTask"

参见 documentation了解更多详情。

关于android - 如果已经运行,则阻止启动主要 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15206064/

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