Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有与我的应用程序相关联的意图。
例如。链接到网页。
有时我的应用程序无法处理意图,应将其重定向到其他应用程序(网络浏览器)。
底线是链接中的查询参数无法与另一个参数区分开来。
我怎样才能做到这一点?
您可以通过简单地调用来获取发送到您的活动的 Intent:
Intent i = getIntent();
然后您可以对其进行任何更改(如果需要)并通过调用再次发送:
startActivity(i);
也许:
sendBroadcast(i);
取决于你想触发什么。
我最终启动了 Intent 选择器。