是否可以从我的应用程序启动应用程序,就好像它是通过通知启动的一样?我有 StatusBarNotification 对象

Posted

技术标签:

【中文标题】是否可以从我的应用程序启动应用程序,就好像它是通过通知启动的一样?我有 StatusBarNotification 对象【英文标题】:Is it possible to launch an app from my app as if it was launched through its notification? I have the StatusBarNotification object 【发布时间】:2019-10-21 13:17:15 【问题描述】:

我想启动一个应用,就像它是通过我的应用上的通知面板启动一样。我有状态栏通知对象,有没有办法通过它获得意图?

当我使用包名称启动应用程序时,它会启动应用程序,就像单击它一样。

if (launchIntent != null) 
    startActivity(launchIntent);

【问题讨论】:

【参考方案1】:
PendingIntent launchIntent = notif.getNotification().contentIntent;

   if (launchIntent != null) 
       try 
          launchIntent.send();
        catch (PendingIntent.CanceledException e) 
          e.printStackTrace();
       
  

【讨论】:

以上是关于是否可以从我的应用程序启动应用程序,就好像它是通过通知启动的一样?我有 StatusBarNotification 对象的主要内容,如果未能解决你的问题,请参考以下文章

是否可以仅使用用户从我的 .net 核心应用程序登录 Azure 并通过?

我可以格式化 URL 以从我的应用程序的 UIWebView 中启动 Safari 吗?

是否可以在 linux 的服务器终端中打开 X11 应用程序?

如何从我的应用程序启动 iPhone 设置应用程序?

是否可以从我的 PC 上租用 Azure 磁盘并通过 iSCSI 连接到它们?

是否可以在 iOS 7 上从我的应用程序中禁用推送通知声音?