我在 Android 应用程序中有一个全屏播放的视频。我添加了一个按钮,允许用户调出“分享”对话框以分享到社交媒体、短信或电子邮件。但是,当用户选择时,例如 Facebook,视频将停止播放。是否可以在用户执行共享时强制视频继续在背景中播放/渲染并打开声音?
分享代码如下:
public static void share(Activity activity, String subject, String body, String title)
{
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, body);
activity.startActivity(Intent.createChooser(shareIntent, title));
}