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