我注意到在旧设备上,一旦您执行标准共享意图(fb、twitter、电子邮件等),在弹出实际共享对话框之前会有几秒钟的延迟。我想知道在等待此共享对话框出现时如何弹出进度对话框?
这是我的代码:
private void share(String subject,String body) {
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(android.content.Intent.EXTRA_SUBJECT, title);
share.putExtra(android.content.Intent.EXTRA_TEXT, body);
startActivity(Intent.createChooser(share, "Share via"));
}