45edbb701a
Change-Id: Idad8840dec02150733f23cfefdeaf152a260f63a
46 lines
1.4 KiB
Plaintext
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>
|