Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何有目的地分享任何类型的内容。我知道分享文字是Intent.EXTRA_TEXT和图像Intent.EXTRA_STREAM。但我想分享任何内容。
Intent.EXTRA_TEXT
Intent.EXTRA_STREAM
putExtra您可以多次调用Intent:
putExtra
Intent intentShare = new Intent(Intent.ACTION_SEND); intentShare.putExtra(Intent.EXTRA_STREAM,imgUri); intentShare.putExtra(Intent.EXTRA_TEXT,text);