Home | History | Annotate | Download | only in patterns
      1 page.title=Pure Android
      2 @jd:body
      3 
      4 <p>Most developers want to distribute their apps on multiple platforms. As you plan your app for
      5 Android, keep in mind that different platforms play by different rules and conventions. Design
      6 decisions that make perfect sense on one platform will look and feel misplaced in the context of a
      7 different platform. While a "design once, ship anywhere" approach might save you time up-front, you
      8 run the very real risk of creating inconsistent apps that alienate users. Consider the following
      9 guidelines to avoid the most common traps and pitfalls.</p>
     10 
     11 <div class="vspace size-1">&nbsp;</div>
     12 
     13 <div class="layout-content-row">
     14   <div class="layout-content-col span-5">
     15 
     16 <h4>Don't mimic UI elements from other platforms</h4>
     17 <p>Platforms typically provide a carefully designed set of UI elements that are themed in a very
     18 distinctive fashion. For example, some platforms advocate rounded corners for their buttons, others
     19 use gradients in their title bars. In some cases, elements may have the same purpose, but are
     20 designed to work a bit differently.</p>
     21 <p>As you build your app for Android, don't carry over themed UI elements from other platforms and
     22 don't mimic their specific behaviors. Review the
     23 <a href="{@docRoot}design/building-blocks/index.html">Building Blocks</a>
     24 section in this styleguide to learn about Android's most important UI elements
     25 and the way they look in the system default themes. Also examine Android's platform apps to get a
     26 sense of how elements are applied in the context of an app. If you want to customize the theme of UI
     27 elements, customize carefully according to your specific branding - and not according to the
     28 conventions of a different platform.</p>
     29 
     30   </div>
     31   <div class="layout-content-col span-8">
     32 
     33     <img src="{@docRoot}design/media/migrating_ui_elements.png">
     34     <div class="figure-caption">
     35       Sampling of UI elements from Android, iOS and Windows Phone 7.
     36     </div>
     37 
     38   </div>
     39 </div>
     40 
     41 <div class="vspace size-2">&nbsp;</div>
     42 
     43 <div class="layout-content-row">
     44   <div class="layout-content-col span-5">
     45 
     46 <h4>Don't carry over platform-specific icons</h4>
     47 <p>Platforms typically provide sets of icons for common functionality, such as sharing, creating a new
     48 document or deleting.</p>
     49 <p>As you are migrating your app to Android, please swap out platform-specific icons with their Android
     50 counterparts.</p>
     51 <p>You can find a wide variety of icons for use in your app in the Android SDK.</p>
     52 
     53   </div>
     54   <div class="layout-content-col span-8">
     55 
     56     <img src="{@docRoot}design/media/migrating_icons.png">
     57     <div class="figure-caption">
     58       Sampling of icons from Android, iOS and Windows Phone 7.
     59     </div>
     60 
     61   </div>
     62 </div>
     63 
     64 <div class="vspace size-2">&nbsp;</div>
     65 
     66 <div class="layout-content-row">
     67   <div class="layout-content-col span-5">
     68 
     69 <h4>Don't use bottom tab bars</h4>
     70 <p>Other platforms use the bottom tab bar to switch between the app's views. Per platform convention,
     71 Android's tabs for view control are shown in action bars at the top of the screen instead. In
     72 addition, Android apps may use a bottom bar to display actions on a split action bar.</p>
     73 <p>You should follow this guideline to create a consistent experience with other apps on the Android
     74 platform and to avoid confusion between actions and view switching on Android.</p>
     75 <p>For more information on how to properly use action bars for view control, see
     76 <a href="{@docRoot}design/patterns/actionbar.html">Action Bars</a>.</p>
     77 
     78   </div>
     79   <div class="layout-content-col span-8">
     80 
     81     <img src="{@docRoot}design/media/migrating_ios_dialers.png">
     82     <div class="figure-caption">
     83       Android dialer with tabs in an action bar vs. bottom tabs in iOS.
     84     </div>
     85 
     86   </div>
     87 </div>
     88 
     89 <div class="layout-content-row">
     90   <div class="layout-content-col span-5">
     91 
     92 <h4>Don't use labeled back buttons on action bars</h4>
     93 <p>Other platforms use an explicit back button with label to allow the user to navigate up the
     94 application's hierarchy. Instead, Android uses the main action bar's app icon for hierarchical
     95 navigation and the navigation bar's back button for temporal navigation. For more information,
     96 please review the <a href="{@docRoot}design/patterns/navigation.html">Navigation</a> pattern.</p>
     97 <p>Follow this guideline to provide a consistent navigation experience across the platform.</p>
     98 
     99   </div>
    100   <div class="layout-content-col span-8">
    101 
    102     <img src="{@docRoot}design/media/migrating_ios_galleries.png">
    103     <div class="figure-caption">
    104       Android action bar with up caret vs. iOS labeled "Back" button.
    105     </div>
    106 
    107   </div>
    108 </div>
    109 
    110 <div class="layout-content-row">
    111   <div class="layout-content-col span-5">
    112 
    113 <h4>Don't use right-pointing carets on line items</h4>
    114 <p>A common pattern on other platforms is the display of right-pointing carets on line items that allow
    115 the user to drill deeper into additional content.</p>
    116 <p>Android does not use such indicators on drill-down line items. Avoid them to stay consistent with
    117 the platform and in order to not have the user guess as to what the meaning of those carets may be.</p>
    118 
    119   </div>
    120   <div class="layout-content-col span-8">
    121 
    122     <img src="{@docRoot}design/media/migrating_ios_settings.png">
    123     <div class="figure-caption">
    124       Android settings without right-pointing carets in line items vs. iOS settings.
    125     </div>
    126 
    127   </div>
    128 </div>
    129 
    130 <h2 id="device-independence">Device Independence</h2>
    131 
    132 <p>Remember that your app will run on a wide variety of different screen sizes. Create visual assets
    133 for different screen sizes and densities and make use of concepts such as multi-pane layouts to
    134 appropriately scale your UI on different device form factors.</p>
    135 <p>For more information, read <a href="{@docRoot}design/style/devices-displays.html">Devices and Displays</a> as
    136 well as <a href="{@docRoot}design/patterns/multi-pane-layouts.html">Multi-pane Layouts</a> in this design guide.</p>
    137