android intent action_send选项只有一次

前端之家收集整理的这篇文章主要介绍了android intent action_send选项只有一次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨有一个带有此代码java来创建共享意图
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,"text" );
sendIntent.putExtra(Intent.EXTRA_SUBJECT,"subject" );
sendIntent.setType("text/plain");

它现在会创建一个可用应用程序的弹出窗口,并询问您是否要始终使用所选应用程序,或者仅仅一次是否有设置将其置于一次并删除此2个按钮?

像Intent.setOption(‘只需一次’)在android中有这样的选项吗?

谢谢

解决方法

使用
Intent sharingIntent = new Intent ( android.content.Intent.ACTION_SEND );
sharingIntent.setType ( "text/plain" );
sharingIntent.putExtra ( android.content.Intent.EXTRA_TEXT,body.toString () );
startActivity(Intent.createChooser(sharingIntent,"Share using?"));

代替

startActivity(sharingIntent);
原文链接:https://www.f2er.com/android/316753.html

猜你在找的Android相关文章