0x00
Intent 作为Android开发三大件之一,其重要程度不言自明。
0x01
文件文本等数据的共享,都是通过Intent传递的。和启动活动不同,发送/分享需要实例化两个Intent对象。
0x02 show you the code
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "this is my text to share");
sendIntent.setType("text/plain");
Intent shareIntent = Intent.createChooser(sendIntent, null);
startActivity(shareIntent);
0x03
这段代码很简单,大概也不需要细说吧。