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.
当 onCreate 的第一个意图完成并且浏览器关闭时,我想调用 onNewIntent,但我不知道我可以这样做。我在 android 开发人员和 goggling 中找到了,但我不明白。
有人可以给我看一个示例吗?谢谢
您可以使用,
Intent in=new Intent(yourcurrentactivity.this, secondactivity.class); starActivity(in);
从您的当前活动中打开第二个活动类。
并在清单文件上添加活动标签。