blob: 9ee5e29ac7f34257e311238a3e54f5ee7ef244d7 [file] [log] [blame]
Scott Main70645e32011-12-13 16:06:16 -08001page.title=Sharing Content
2
3trainingnavtop=true
4startpage=true
5next.title=Sending Content to Other Apps
6next.link=send.html
7
8@jd:body
9
10<div id="tb-wrapper">
11<div id="tb">
12
13<!-- Required platform, tools, add-ons, devices, knowledge, etc. -->
14<h2>Dependencies and prerequisites</h2>
15<ul>
16 <li>Android 1.0 or higher (greater requirements where noted)</li>
17 <li>Experience with <a href="{@docRoot}guide/topics/intents/intents-filters.html">Intents and
18Intent Filters</a></li>
19</ul>
20
21</div>
22</div>
23
24
25<p>One of the great things about Android applications is their ability to communicate and
26integrate with each other. Why reinvent functionality that isn't core to your application when it
27already exists in another application?</p>
28
Adam Koch909fe932011-12-15 15:54:52 -050029<p>This class covers some common ways you can send and receive content between
Scott Main70645e32011-12-13 16:06:16 -080030applications using {@link android.content.Intent} APIs and the {@link
Adam Koch909fe932011-12-15 15:54:52 -050031android.view.ActionProvider} object.</p>
Scott Main70645e32011-12-13 16:06:16 -080032
33
34<h2>Lessons</h2>
35
36<dl>
37 <dt><b><a href="send.html">Sending Content to Other Apps</a></b></dt>
38 <dd>Learn how to set up your application to be able to send text and binary data to other
39applications with intents.</dd>
40
41 <dt><b><a href="receive.html">Receiving Content from Other Apps</a></b></dt>
42 <dd>Learn how to set up your application to receive text and binary data from intents.</dd>
Adam Koch909fe932011-12-15 15:54:52 -050043
Scott Main70645e32011-12-13 16:06:16 -080044 <dt><b><a href="shareaction.html">Adding an Easy Share Action</a></b></dt>
45 <dd>Learn how to add a "share" action item to your action bar.</dd>
46</dl>