gpt4 book ai didi

java - android - Intent 者的子 Activity

转载 作者:太空宇宙 更新时间:2023-11-04 14:43:31 26 4
gpt4 key购买 nike

我正在尝试与我的 Android 应用程序进行简单的文件共享,

    Intent i = new Intent(Intent.ACTION_SEND);
i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
i.setType("image/jpg");
i.putExtra(Intent.EXTRA_STREAM, Uri.parse(uri_file));
Intent chooser = Intent.createChooser(i, "Select application");
startActivity(chooser);

当 Intent Activity 未启动任何其他应用程序时,这非常有用。例如,分享到 google+、更改“收件人”圈子、发送然后返回应用程序,会导致应用程序重新启动。

最佳答案

当您在后台时,您的进程被终止。这是完全正常的行为。您可以阅读 the process lifecycle详细了解您的流程何时开始和结束。

关于java - android - Intent 者的子 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24697971/

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