Home | History | Annotate | Download | only in sharing
      1 page.title=Sharing Simple Data
      2 page.tags=intents,share
      3 
      4 trainingnavtop=true
      5 startpage=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
     17 Intent 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
     25 integrate with each other. Why reinvent functionality that isn't core to your application when it
     26 already exists in another application?</p>
     27 
     28 <p>This class covers some common ways you can send and receive simple data between
     29 applications using {@link android.content.Intent} APIs and the {@link
     30 android.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
     38 applications 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