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インテントを複数回呼び出すことができます。
putExtra
Intent intentShare = new Intent(Intent.ACTION_SEND); intentShare.putExtra(Intent.EXTRA_STREAM,imgUri); intentShare.putExtra(Intent.EXTRA_TEXT,text);