overview.html 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Overview &mdash; android_core 0.1.0 documentation</title>
  7. <link rel="stylesheet" href="_static/haiku.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  9. <link rel="stylesheet" href="_static/print.css" type="text/css" />
  10. <script type="text/javascript">
  11. var DOCUMENTATION_OPTIONS = {
  12. URL_ROOT: '',
  13. VERSION: '0.1.0',
  14. COLLAPSE_INDEX: false,
  15. FILE_SUFFIX: '.html',
  16. HAS_SOURCE: true
  17. };
  18. </script>
  19. <script type="text/javascript" src="_static/jquery.js"></script>
  20. <script type="text/javascript" src="_static/underscore.js"></script>
  21. <script type="text/javascript" src="_static/doctools.js"></script>
  22. <script type="text/javascript" src="_static/theme_extras.js"></script>
  23. <link rel="top" title="android_core 0.1.0 documentation" href="index.html" />
  24. <link rel="next" title="Installing" href="installing.html" />
  25. <link rel="prev" title="android_core" href="index.html" />
  26. </head>
  27. <body>
  28. <div class="header"><h1 class="heading"><a href="index.html">
  29. <span>android_core 0.1.0 documentation</span></a></h1>
  30. <h2 class="heading"><span>Overview</span></h2>
  31. </div>
  32. <div class="topnav">
  33. <p>
  34. «&#160;&#160;<a href="index.html">android_core</a>
  35. &#160;&#160;::&#160;&#160;
  36. <a class="uplink" href="index.html">Contents</a>
  37. &#160;&#160;::&#160;&#160;
  38. <a href="installing.html">Installing</a>&#160;&#160;»
  39. </p>
  40. </div>
  41. <div class="content">
  42. <div class="section" id="overview">
  43. <h1>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h1>
  44. <p>The android_core stack is currently under active development. Consider all
  45. APIs and documentation to be volatile.</p>
  46. <p><a class="reference external" href="javadoc/index.html">Javadoc</a> is used extensively and cross referenced from
  47. this documentation.</p>
  48. <div class="section" id="ros-enabling-android-applications">
  49. <h2>ROS-enabling Android applications<a class="headerlink" href="#ros-enabling-android-applications" title="Permalink to this headline">¶</a></h2>
  50. <p>android_core provides <a class="reference external" href="http://developer.android.com/guide/developing/projects/index.html#LibraryProjects">Android Library Projects</a> to help you write ROS
  51. applications for Android. The library projects are named for the <a class="reference external" href="http://developer.android.com/guide/appendix/api-levels.html">Android API
  52. level</a> they require (e.g. android_gingerbread_mr1 and android_honeycomb_mr2).
  53. Each class or feature is defined in the library project that represents the
  54. minimum version of Android required for it to work.</p>
  55. <p>Your application can depend on multiple library projects. This allows you to
  56. easily target your application for different API levels.</p>
  57. <p>Beyond specific features, android_core defines the pattern of combining the
  58. Android <a class="reference external" href="http://developer.android.com/reference/android/view/View.html">View</a> and <a class="reference external" href="javadoc/org/ros/node/NodeMain.html#">NodeMain</a> concepts to enable the
  59. development of data driven Android UIs (e.g.
  60. <a class="reference external" href="javadoc/org/ros/android/view/RosTextView.html#">RosTextView</a>).</p>
  61. </div>
  62. <div class="section" id="android-gingerbread-mr1-library-project">
  63. <h2>android_gingerbread_mr1 library project<a class="headerlink" href="#android-gingerbread-mr1-library-project" title="Permalink to this headline">¶</a></h2>
  64. <p>android_gingerbread_mr1 (API level 10) is the lowest API level supported. It
  65. provides the base <a class="reference external" href="http://developer.android.com/reference/android/app/Activity.html">Activity</a> (<a class="reference external" href="javadoc/org/ros/android/RosActivity.html#">RosActivity</a>) and
  66. <a class="reference external" href="http://developer.android.com/reference/android/app/Service.html">Service</a> (<a class="reference external" href="javadoc/org/ros/android/NodeMainExecutorService.html#">NodeMainExecutorService</a>) for executing
  67. and managing the lifecycle of your <a class="reference external" href="javadoc/org/ros/node/NodeMain.html#">NodeMain</a>s.</p>
  68. <p>A few of the other features provided include:</p>
  69. <ul class="simple">
  70. <li>camera publisher</li>
  71. <li>image view</li>
  72. <li>orientation publisher</li>
  73. </ul>
  74. </div>
  75. <div class="section" id="android-honeycomb-mr2-library-project">
  76. <h2>android_honeycomb_mr2 library project<a class="headerlink" href="#android-honeycomb-mr2-library-project" title="Permalink to this headline">¶</a></h2>
  77. <p>android_honeycomb_mr2 (API level 13) provides features that require multitouch
  78. and other APIs that are only available in devices with Android Honeycomb MR2 or
  79. higher.</p>
  80. <p>A few of the features provided include:</p>
  81. <ul class="simple">
  82. <li>2D mapping and navigation</li>
  83. <li>2D laser scan visualization</li>
  84. <li>virtual joystick</li>
  85. </ul>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="bottomnav">
  90. <p>
  91. «&#160;&#160;<a href="index.html">android_core</a>
  92. &#160;&#160;::&#160;&#160;
  93. <a class="uplink" href="index.html">Contents</a>
  94. &#160;&#160;::&#160;&#160;
  95. <a href="installing.html">Installing</a>&#160;&#160;»
  96. </p>
  97. </div>
  98. <div class="footer">
  99. &copy; Copyright 2013, Google, Inc..
  100. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
  101. </div>
  102. </body>
  103. </html>