Joe Fernandez 33baa5ad7d Removing quotes from page.tags values
Change-Id: I9e12079568ef7be8574743a34856ed2839e1e76a
2013-11-14 21:00:10 +00:00

46 lines
1.4 KiB
Plaintext

page.title=Sharing Simple Data
page.tags=intents,share
trainingnavtop=true
startpage=true
@jd:body
<div id="tb-wrapper">
<div id="tb">
<!-- Required platform, tools, add-ons, devices, knowledge, etc. -->
<h2>Dependencies and prerequisites</h2>
<ul>
<li>Android 1.0 or higher (greater requirements where noted)</li>
<li>Experience with <a href="{@docRoot}guide/components/intents-filters.html">Intents and
Intent Filters</a></li>
</ul>
</div>
</div>
<p>One of the great things about Android applications is their ability to communicate and
integrate with each other. Why reinvent functionality that isn't core to your application when it
already exists in another application?</p>
<p>This class covers some common ways you can send and receive simple data between
applications using {@link android.content.Intent} APIs and the {@link
android.view.ActionProvider} object.</p>
<h2>Lessons</h2>
<dl>
<dt><b><a href="send.html">Sending Simple Data to Other Apps</a></b></dt>
<dd>Learn how to set up your application to be able to send text and binary data to other
applications with intents.</dd>
<dt><b><a href="receive.html">Receiving Simple Data from Other Apps</a></b></dt>
<dd>Learn how to set up your application to receive text and binary data from intents.</dd>
<dt><b><a href="shareaction.html">Adding an Easy Share Action</a></b></dt>
<dd>Learn how to add a "share" action item to your action bar.</dd>
</dl>