| Joe Malin | 9020543 | 2010-03-01 18:10:57 -0800 | [diff] [blame] | 1 | <?cs # Table of contents for Dev Guide. |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 2 | |
| Joe Malin | 9020543 | 2010-03-01 18:10:57 -0800 | [diff] [blame] | 3 | For each document available in translation, add an localized title to this TOC. |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 4 | Do not add localized title for docs not available in translation. |
| 5 | Below are template spans for adding localized doc titles. Please ensure that |
| 6 | localized titles are added in the language order specified below. |
| 7 | ?> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 8 | <ul id="nav"> |
| 9 | <!-- Walkthrough for Developers -- quick overview of what it's like to develop on Android --> |
| 10 | <!--<li style="color:red">Overview</li> --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 11 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 12 | <li class="nav-section"> |
| 13 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/index.html"> |
| 14 | <span class="en">App Components</span> |
| 15 | </a></div> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 16 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 17 | <li><a href="<?cs var:toroot ?>guide/components/fundamentals.html"> |
| 18 | <span class="en">App Fundamentals</span></a> |
| 19 | </li> |
| 20 | <li class="nav-section"> |
| 21 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/activities.html"> |
| 22 | <span class="en">Activities</span> |
| 23 | </a></div> |
| Scott Main | 9bf45a0 | 2011-02-03 18:46:45 -0800 | [diff] [blame] | 24 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 25 | <li><a href="<?cs var:toroot ?>guide/components/fragments.html"> |
| 26 | <span class="en">Fragments</span> |
| 27 | </a></li> |
| 28 | <li><a href="<?cs var:toroot ?>guide/components/loaders.html"> |
| 29 | <span class="en">Loaders</span> |
| 30 | </a></li> |
| 31 | <li><a href="<?cs var:toroot ?>guide/components/tasks-and-back-stack.html"> |
| 32 | <span class="en">Tasks and Back Stack</span> |
| 33 | </a></li> |
| Scott Main | 9bf45a0 | 2011-02-03 18:46:45 -0800 | [diff] [blame] | 34 | </ul> |
| 35 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 36 | <li class="nav-section"> |
| 37 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/components/services.html"> |
| 38 | <span class="en">Services</span> |
| 39 | </a></div> |
| Scott Main | 9bf45a0 | 2011-02-03 18:46:45 -0800 | [diff] [blame] | 40 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 41 | <li><a href="<?cs var:toroot ?>guide/components/bound-services.html"> |
| 42 | <span class="en">Bound Services</span> |
| 43 | </a></li> |
| Scott Main | e40c463 | 2012-06-25 10:02:13 -0700 | [diff] [blame] | 44 | <li><a href="<?cs var:toroot ?>guide/components/aidl.html"> |
| 45 | <span class="en">AIDL</span> |
| 46 | </a></li> |
| Scott Main | 9bf45a0 | 2011-02-03 18:46:45 -0800 | [diff] [blame] | 47 | </ul> |
| 48 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 49 | <li class="nav-section"> |
| 50 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/providers/content-providers.html"> |
| Scott Main | 9bf45a0 | 2011-02-03 18:46:45 -0800 | [diff] [blame] | 51 | <span class="en">Content Providers</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 52 | </a></div> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 53 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 54 | <li><a href="<?cs var:toroot ?>guide/topics/providers/content-provider-basics.html"> |
| 55 | <span class="en">Content Provider Basics</span> |
| 56 | </a></li> |
| 57 | <li><a href="<?cs var:toroot ?>guide/topics/providers/content-provider-creating.html"> |
| 58 | <span class="en">Creating a Content Provider</span> |
| 59 | </a></li> |
| 60 | <li><a href="<?cs var:toroot ?>guide/topics/providers/calendar-provider.html"> |
| 61 | <span class="en">Calendar Provider</span> |
| 62 | </a></li> |
| 63 | <li><a href="<?cs var:toroot ?>guide/topics/providers/contacts-provider.html"> |
| 64 | <span class="en">Contacts Provider</span> |
| 65 | </a></li> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 66 | </ul> |
| Scott Main | b83a283 | 2010-04-29 13:26:53 -0700 | [diff] [blame] | 67 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 68 | <li><a href="<?cs var:toroot ?>guide/components/intents-filters.html"> |
| 69 | <span class="en">Intents and Intent Filters</span> |
| 70 | </a></li> |
| 71 | <li><a href="<?cs var:toroot ?>guide/components/processes-and-threads.html"> |
| 72 | <span class="en">Processes and Threads</span> |
| 73 | </a> |
| 74 | </li> |
| 75 | <li><a href="<?cs var:toroot ?>guide/topics/security/permissions.html"> |
| 76 | <span class="en">Permissions</span> |
| 77 | </a> |
| 78 | </li> |
| kmccormick | 25072c7 | 2013-03-01 16:13:21 -0800 | [diff] [blame] | 79 | <li class="nav-section"> |
| 80 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/appwidgets/index.html"> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 81 | <span class="en">App Widgets</span> |
| kmccormick | 25072c7 | 2013-03-01 16:13:21 -0800 | [diff] [blame] | 82 | </a></div> |
| 83 | <ul> |
| 84 | <li><a href="<?cs var:toroot ?>guide/topics/appwidgets/host.html"> |
| 85 | <span class="en">App Widget Host</span> |
| 86 | </a></li> |
| 87 | </ul> |
| 88 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 89 | <li class="nav-section"> |
| 90 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/manifest/manifest-intro.html"> |
| 91 | <span class="en">Android Manifest</span> |
| Scott Main | 9bf45a0 | 2011-02-03 18:46:45 -0800 | [diff] [blame] | 92 | </a></div> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 93 | <ul> |
| 94 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/action-element.html"><action></a></li> |
| 95 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/activity-element.html"><activity></a></li> |
| 96 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/activity-alias-element.html"><activity-alias></a></li> |
| 97 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/application-element.html"><application></a></li> |
| 98 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/category-element.html"><category></a></li> |
| Scott Main | 1b6dd05 | 2011-01-31 15:40:59 -0800 | [diff] [blame] | 99 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/compatible-screens-element.html"><compatible-screens></a></li> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 100 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/data-element.html"><data></a></li> |
| 101 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/grant-uri-permission-element.html"><grant-uri-permission></a></li> |
| 102 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/instrumentation-element.html"><instrumentation></a></li> |
| 103 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/intent-filter-element.html"><intent-filter></a></li> |
| 104 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/manifest-element.html"><manifest></a></li> |
| 105 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/meta-data-element.html"><meta-data></a></li> |
| Scott Main | b3b2b4f | 2010-02-12 17:19:02 -0800 | [diff] [blame] | 106 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/path-permission-element.html"><path-permission></a></li> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 107 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/permission-element.html"><permission></a></li> |
| 108 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/permission-group-element.html"><permission-group></a></li> |
| 109 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/permission-tree-element.html"><permission-tree></a></li> |
| 110 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/provider-element.html"><provider></a></li> |
| 111 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/receiver-element.html"><receiver></a></li> |
| 112 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/service-element.html"><service></a></li> |
| Robert Ly | c80b7ad | 2011-07-18 12:51:47 -0700 | [diff] [blame] | 113 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/supports-gl-texture-element.html"><supports-gl-texture></a></li> |
| Scott Main | 9ed517d | 2011-09-21 21:04:19 -0700 | [diff] [blame] | 114 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/supports-screens-element.html"><supports-screens></a></li><!-- ##api level 4## --> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 115 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/uses-configuration-element.html"><uses-configuration></a></li> |
| Scott Main | 71d4b28 | 2009-08-13 12:45:31 -0700 | [diff] [blame] | 116 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/uses-feature-element.html"><uses-feature></a></li> <!-- ##api level 4## --> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 117 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/uses-library-element.html"><uses-library></a></li> |
| 118 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/uses-permission-element.html"><uses-permission></a></li> |
| 119 | <li><a href="<?cs var:toroot ?>guide/topics/manifest/uses-sdk-element.html"><uses-sdk></a></li> |
| 120 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 121 | </li><!-- end of the manifest file --> |
| Robert Ly | c80b7ad | 2011-07-18 12:51:47 -0700 | [diff] [blame] | 122 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 123 | </ul> |
| 124 | </li> |
| 125 | |
| 126 | <li class="nav-section"> |
| 127 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/ui/index.html"> |
| 128 | <span class="en">User Interface</span> |
| 129 | </a></div> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 130 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 131 | <li><a href="<?cs var:toroot ?>guide/topics/ui/overview.html"> |
| 132 | <span class="en">Overview</span> |
| 133 | </a></li> |
| 134 | <li class="nav-section"> |
| 135 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/ui/declaring-layout.html"> |
| 136 | <span class="en">Layouts</span> |
| Scott Main | 3e06f2c | 2012-03-30 10:29:33 -0700 | [diff] [blame] | 137 | </a></div> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 138 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 139 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/linear.html"> |
| 140 | <span class="en">Linear Layout</span> |
| 141 | </a></li> |
| 142 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/relative.html"> |
| 143 | <span class="en">Relative Layout</span> |
| 144 | </a></li> |
| 145 | <!-- |
| 146 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/grid.html"> |
| 147 | <span class="en">Grid Layout</span> |
| 148 | </a></li> |
| 149 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/tabs.html"> |
| 150 | <span class="en">Tab Layout</span> |
| 151 | </a></li> |
| 152 | --> |
| 153 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/listview.html"> |
| 154 | <span class="en">List View</span> |
| 155 | </a></li> |
| 156 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/gridview.html"> |
| 157 | <span class="en">Grid View</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 158 | </a></li> |
| Robert Ly | 3401c0e | 2011-10-12 10:01:41 -0700 | [diff] [blame] | 159 | </ul> |
| 160 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 161 | |
| 162 | <li class="nav-section"> |
| 163 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/ui/controls.html"> |
| 164 | <span class="en">Input Controls</span> |
| Robert Ly | 3401c0e | 2011-10-12 10:01:41 -0700 | [diff] [blame] | 165 | </a></div> |
| 166 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 167 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/button.html"> |
| 168 | <span class="en">Buttons</span> |
| 169 | </a></li> |
| 170 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/text.html"> |
| 171 | <span class="en">Text Fields</span> |
| 172 | </a></li> |
| 173 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/checkbox.html"> |
| 174 | <span class="en">Checkboxes</span> |
| 175 | </a></li> |
| 176 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/radiobutton.html"> |
| 177 | <span class="en">Radio Buttons</span> |
| 178 | </a></li> |
| 179 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/togglebutton.html"> |
| 180 | <span class="en">Toggle Buttons</span> |
| 181 | </a></li> |
| 182 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/spinner.html"> |
| 183 | <span class="en">Spinners</span> |
| 184 | </a></li> |
| 185 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/pickers.html"> |
| 186 | <span class="en">Pickers</span> |
| 187 | </a></li> |
| 188 | <!-- |
| 189 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/progress.html"> |
| 190 | <span class="en">Seek and Progress Bars</span> |
| 191 | </a></li> |
| 192 | --> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 193 | </ul> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 194 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 195 | <li><a href="<?cs var:toroot ?>guide/topics/ui/ui-events.html"> |
| 196 | <span class="en">Input Events</span> |
| 197 | </a></li> |
| 198 | <li><a href="<?cs var:toroot ?>guide/topics/ui/menus.html"> |
| 199 | <span class="en">Menus</span></span> |
| 200 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 201 | <li><a href="<?cs var:toroot ?>guide/topics/ui/actionbar.html"> |
| 202 | <span class="en">Action Bar</span> |
| 203 | </a></li> |
| Scott Main | bbb3f41 | 2012-03-09 19:10:40 -0800 | [diff] [blame] | 204 | <li><a href="<?cs var:toroot ?>guide/topics/ui/settings.html"> |
| 205 | <span class="en">Settings</span> |
| 206 | </a></li> |
| Scott Main | e249763 | 2012-10-12 12:06:10 -0700 | [diff] [blame] | 207 | <li><a href="<?cs var:toroot ?>guide/topics/ui/dialogs.html"> |
| 208 | <span class="en">Dialogs</span> |
| 209 | </a></li> |
| 210 | <li><a href="<?cs var:toroot ?>guide/topics/ui/notifiers/notifications.html"> |
| 211 | <span class="en">Notifications</span> |
| 212 | </a></li> |
| 213 | <li><a href="<?cs var:toroot ?>guide/topics/ui/notifiers/toasts.html"> |
| 214 | <span class="en">Toasts</span> |
| 215 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 216 | <li class="nav-section"> |
| 217 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/search/index.html"> |
| 218 | <span class="en">Search</span> |
| 219 | </a></div> |
| 220 | <ul> |
| 221 | <li><a href="<?cs var:toroot ?>guide/topics/search/search-dialog.html">Creating a Search Interface</a></li> |
| 222 | <li><a href="<?cs var:toroot ?>guide/topics/search/adding-recent-query-suggestions.html">Adding Recent Query Suggestions</a></li> |
| 223 | <li><a href="<?cs var:toroot ?>guide/topics/search/adding-custom-suggestions.html">Adding Custom Suggestions</a></li> |
| 224 | <li><a href="<?cs var:toroot ?>guide/topics/search/searchable-config.html">Searchable Configuration</a></li> |
| 225 | </ul> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 226 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 227 | <li><a href="<?cs var:toroot ?>guide/topics/ui/drag-drop.html"> |
| 228 | <span class="en">Drag and Drop</span> |
| 229 | </a></li> |
| 230 | <li class="nav-section"> |
| 231 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/index.html"> |
| 232 | <span class="en">Accessibility</span> |
| 233 | </a></div> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 234 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 235 | <li><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/apps.html"> |
| 236 | <span class="en">Making Applications Accessible</span> |
| 237 | </a></li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 238 | <li><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/checklist.html"> |
| 239 | <span class="en">Accessibility Developer Checklist</span> |
| 240 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 241 | <li><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/services.html"> |
| 242 | <span class="en">Building Accessibility Services</span> |
| 243 | </a></li> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 244 | </ul> |
| 245 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 246 | <li><a href="<?cs var:toroot ?>guide/topics/ui/themes.html"> |
| 247 | <span class="en">Styles and Themes</span> |
| 248 | </a></li> |
| 249 | <li><a href="<?cs var:toroot ?>guide/topics/ui/custom-components.html"> |
| 250 | <span class="en">Custom Components</span> |
| 251 | </a></li> |
| 252 | </ul> |
| 253 | </li><!-- end of User Interface --> |
| Robert Ly | f197b63 | 2011-06-08 22:23:42 -0700 | [diff] [blame] | 254 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 255 | <li class="nav-section"> |
| 256 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/resources/index.html"> |
| 257 | <span class="en">App Resources</span> |
| 258 | </a></div> |
| 259 | <ul> |
| 260 | <li><a href="<?cs var:toroot ?>guide/topics/resources/overview.html"> |
| 261 | <span class="en">Overview</span> |
| 262 | </a></li> |
| 263 | <li><a href="<?cs var:toroot ?>guide/topics/resources/providing-resources.html"> |
| 264 | <span class="en">Providing Resources</span> |
| 265 | </a></li> |
| 266 | <li><a href="<?cs var:toroot ?>guide/topics/resources/accessing-resources.html"> |
| 267 | <span class="en">Accessing Resources</span> |
| 268 | </a></li> |
| 269 | <li><a href="<?cs var:toroot ?>guide/topics/resources/runtime-changes.html"> |
| 270 | <span class="en">Handling Runtime Changes</span> |
| 271 | </a></li> |
| 272 | <li><a href="<?cs var:toroot ?>guide/topics/resources/localization.html"> |
| 273 | <span class="en">Localization</span> |
| 274 | </a></li> |
| 275 | <li class="nav-section"> |
| 276 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/resources/available-resources.html"> |
| 277 | <span class="en">Resource Types</span> |
| 278 | </a></div> |
| 279 | <ul> |
| 280 | <li><a href="<?cs var:toroot ?>guide/topics/resources/animation-resource.html">Animation</a></li> |
| 281 | <li><a href="<?cs var:toroot ?>guide/topics/resources/color-list-resource.html">Color State List</a></li> |
| 282 | <li><a href="<?cs var:toroot ?>guide/topics/resources/drawable-resource.html">Drawable</a></li> |
| 283 | <li><a href="<?cs var:toroot ?>guide/topics/resources/layout-resource.html">Layout</a></li> |
| 284 | <li><a href="<?cs var:toroot ?>guide/topics/resources/menu-resource.html">Menu</a></li> |
| 285 | <li><a href="<?cs var:toroot ?>guide/topics/resources/string-resource.html">String</a></li> |
| 286 | <li><a href="<?cs var:toroot ?>guide/topics/resources/style-resource.html">Style</a></li> |
| 287 | <li><a href="<?cs var:toroot ?>guide/topics/resources/more-resources.html">More Types</a></li> |
| 288 | </ul> |
| 289 | </li><!-- end of resource types --> |
| 290 | </ul> |
| 291 | </li><!-- end of app resources --> |
| 292 | |
| 293 | <li class="nav-section"> |
| 294 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/graphics/index.html"> |
| 295 | <span class="en">Animation and Graphics</span> |
| 296 | </a></div> |
| 297 | <ul> |
| 298 | <li class="nav-section"> |
| 299 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/overview.html"> |
| 300 | <span class="en">Overview</span> |
| 301 | </a></li> |
| 302 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/prop-animation.html"> |
| 303 | <span class="en">Property Animation</span> |
| 304 | </a></li> |
| 305 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/view-animation.html"> |
| 306 | <span class="en">View Animation</span> |
| 307 | </a></li> |
| 308 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/drawable-animation.html"> |
| 309 | <span class="en">Drawable Animation</span> |
| 310 | </a></li> |
| 311 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/2d-graphics.html"> |
| 312 | <span class="en">Canvas and Drawables</span> |
| 313 | </a></li> |
| 314 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/opengl.html"> |
| 315 | <span class="en">OpenGL</span> |
| 316 | </a></li> |
| 317 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/hardware-accel.html"> |
| 318 | <span class="en">Hardware Acceleration</span> |
| 319 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 320 | </ul> |
| 321 | </li><!-- end of graphics and animation--> |
| 322 | |
| Robert Ly | 864090e | 2012-06-17 18:22:17 -0700 | [diff] [blame] | 323 | <li class="nav-section"> |
| 324 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/renderscript/index.html"> |
| 325 | <span class="en">Computation</span> |
| 326 | </a></div> |
| 327 | <ul> |
| 328 | <li><a href="<?cs var:toroot ?>guide/topics/renderscript/compute.html"> |
| Tim Murray | 015d268 | 2013-05-30 12:34:40 -0700 | [diff] [blame^] | 329 | <span class="en">RenderScript</span></a> |
| Robert Ly | 864090e | 2012-06-17 18:22:17 -0700 | [diff] [blame] | 330 | </li> |
| 331 | |
| 332 | <li><a href="<?cs var:toroot ?>guide/topics/renderscript/advanced.html"> |
| Tim Murray | 015d268 | 2013-05-30 12:34:40 -0700 | [diff] [blame^] | 333 | <span class="en">Advanced RenderScript</span></a> |
| Robert Ly | 864090e | 2012-06-17 18:22:17 -0700 | [diff] [blame] | 334 | </li> |
| 335 | <li><a href="<?cs var:toroot ?>guide/topics/renderscript/reference.html"> |
| 336 | <span class="en">Runtime API Reference</span></a> |
| 337 | </li> |
| 338 | </ul> |
| 339 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 340 | <li class="nav-section"> |
| 341 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/media/index.html"> |
| 342 | <span class="en">Media and Camera</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 343 | </a></div> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 344 | <ul> |
| 345 | <li><a href="<?cs var:toroot ?>guide/topics/media/mediaplayer.html"> |
| 346 | <span class="en">Media Playback</span></a> |
| 347 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 348 | <li><a href="<?cs var:toroot ?>guide/appendix/media-formats.html"> |
| 349 | <span class="en">Supported Media Formats</span></a> |
| 350 | </li> |
| 351 | <li><a href="<?cs var:toroot ?>guide/topics/media/audio-capture.html"> |
| 352 | <span class="en">Audio Capture</span></a> |
| 353 | </li> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 354 | <li><a href="<?cs var:toroot ?>guide/topics/media/jetplayer.html"> |
| 355 | <span class="en">JetPlayer</span></a> |
| 356 | </li> |
| 357 | <li><a href="<?cs var:toroot ?>guide/topics/media/camera.html"> |
| 358 | <span class="en">Camera</span></a> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 359 | </li> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 360 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 361 | </li><!-- end of media and camera --> |
| 362 | |
| 363 | <li class="nav-section"> |
| 364 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/sensors/index.html"> |
| 365 | <span class="en">Location and Sensors</span> |
| Scott Main | 3e06f2c | 2012-03-30 10:29:33 -0700 | [diff] [blame] | 366 | </a></div> |
| Bill Gruber | f8c029e | 2011-11-01 09:31:57 -0700 | [diff] [blame] | 367 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 368 | <li><a href="<?cs var:toroot ?>guide/topics/location/index.html"> |
| 369 | <span class="en">Location and Maps</span> |
| 370 | </a> |
| 371 | <li><a href="<?cs var:toroot ?>guide/topics/location/strategies.html"> |
| 372 | <span class="en">Location Strategies</span> |
| 373 | </a></li> |
| Bill Gruber | f8c029e | 2011-11-01 09:31:57 -0700 | [diff] [blame] | 374 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_overview.html"> |
| 375 | <span class="en">Sensors Overview</span> |
| 376 | </a></li> |
| 377 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_motion.html"> |
| 378 | <span class="en">Motion Sensors</span> |
| 379 | </a></li> |
| 380 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_position.html"> |
| 381 | <span class="en">Position Sensors</span> |
| 382 | </a></li> |
| 383 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_environment.html"> |
| 384 | <span class="en">Environment Sensors</span> |
| 385 | </a></li> |
| 386 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 387 | </li><!-- end of location and sensors --> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 388 | |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 389 | |
| 390 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 391 | <li class="nav-section"> |
| 392 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/connectivity/index.html"> |
| 393 | <span class="en">Connectivity</span> |
| Scott Main | fa4596e | 2010-08-17 20:29:03 -0700 | [diff] [blame] | 394 | </a></div> |
| 395 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 396 | <li><a href="<?cs var:toroot?>guide/topics/connectivity/bluetooth.html"> |
| 397 | <span class="en">Bluetooth</span> |
| 398 | </a> |
| Katie McCormick | d4fac2c | 2011-06-03 16:50:14 -0700 | [diff] [blame] | 399 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 400 | <li class="nav-section"> |
| 401 | <div class="nav-section-header"><a href="<?cs var:toroot?>guide/topics/connectivity/nfc/index.html"> |
| 402 | <span class="en">NFC</span></a> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 403 | </div> |
| 404 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 405 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/nfc/nfc.html">NFC Basics</a></li> |
| 406 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/nfc/advanced-nfc.html">Advanced NFC</a></li> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 407 | </ul> |
| 408 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 409 | <li><a href="<?cs var:toroot?>guide/topics/connectivity/wifip2p.html"> |
| Scott Main | 3e06f2c | 2012-03-30 10:29:33 -0700 | [diff] [blame] | 410 | <span class="en">Wi-Fi Direct</span></a> |
| Robert Ly | 12a1de0 | 2011-11-02 11:56:50 -0700 | [diff] [blame] | 411 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 412 | <li class="nav-section"> |
| 413 | <div class="nav-section-header"><a href="<?cs var:toroot?>guide/topics/connectivity/usb/index.html"> |
| Robert Ly | bde2b92 | 2011-04-18 10:18:30 -0700 | [diff] [blame] | 414 | <span class="en">USB</span></a> |
| Robert Ly | bde2b92 | 2011-04-18 10:18:30 -0700 | [diff] [blame] | 415 | </div> |
| 416 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 417 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/usb/accessory.html">Accessory</a></li> |
| 418 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/usb/host.html">Host</a></li> |
| Robert Ly | bde2b92 | 2011-04-18 10:18:30 -0700 | [diff] [blame] | 419 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 420 | </li> |
| 421 | <li><a href="<?cs var:toroot?>guide/topics/connectivity/sip.html"> |
| 422 | <span class="en">SIP</span> |
| 423 | </a> |
| 424 | </li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 425 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 426 | </ul> |
| 427 | </li><!-- end of connectivity --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 428 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 429 | <li class="nav-section"> |
| 430 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/text/index.html"> |
| 431 | <span class="en">Text and Input</span> |
| 432 | </a></div> |
| 433 | <ul> |
| 434 | <li><a href="<?cs var:toroot ?>guide/topics/text/copy-paste.html"> |
| 435 | <span class="en">Copy and Paste</span> |
| 436 | </a></li> |
| 437 | <li><a href="<?cs var:toroot ?>guide/topics/text/creating-input-method.html"> |
| 438 | <span class="en">Creating an IME</span> |
| 439 | </a></li> |
| 440 | <li><a href="<?cs var:toroot ?>guide/topics/text/spell-checker-framework.html"> |
| 441 | <span class="en">Spelling Checker</span> |
| 442 | </a></li> |
| 443 | </ul> |
| 444 | </li><!-- end of text and input --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 445 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 446 | <li class="nav-section"> |
| 447 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/data/index.html"> |
| 448 | <span class="en">Data Storage</span> |
| 449 | </a></div> |
| 450 | <ul> |
| 451 | <li><a href="<?cs var:toroot ?>guide/topics/data/data-storage.html"> |
| 452 | <span class="en">Storage Options</span> |
| 453 | </a></li> |
| 454 | <li><a href="<?cs var:toroot ?>guide/topics/data/backup.html"> |
| 455 | <span class="en">Data Backup</span> |
| Scott Main | 223a94d | 2011-05-06 09:53:29 -0700 | [diff] [blame] | 456 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 457 | <li><a href="<?cs var:toroot ?>guide/topics/data/install-location.html"> |
| 458 | <span class="en">App Install Location</span> |
| 459 | </a></li> |
| 460 | </ul> |
| 461 | </li><!-- end of data storage --> |
| 462 | |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 463 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 464 | <li class="nav-section"> |
| 465 | <div class="nav-section-header"><a href="<?cs var:toroot?>guide/topics/admin/index.html"> |
| 466 | <span class="en">Administration</span> |
| 467 | </a></div> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 468 | <ul> |
| 469 | <li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 470 | <a href="<?cs var:toroot?>guide/topics/admin/device-admin.html"> |
| 471 | <span class="en">Device Policies</span></a> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 472 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 473 | <!-- |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 474 | <li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 475 | <a href="<?cs var:toroot?>guide/topics/admin/keychain.html"> |
| 476 | <span class="en">Certificate Store</span></a> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 477 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 478 | --> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 479 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 480 | </li><!-- end of administration --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 481 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 482 | <li class="nav-section"> |
| 483 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/webapps/index.html"> |
| 484 | <span class="en">Web Apps</span> |
| 485 | </a></div> |
| Bill Gruber | df71cab | 2011-02-01 23:01:16 -0800 | [diff] [blame] | 486 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 487 | <li><a href="<?cs var:toroot ?>guide/webapps/overview.html"> |
| 488 | <span class="en">Overview</span> |
| Bill Gruber | 6c60e9a | 2011-09-08 15:41:22 -0700 | [diff] [blame] | 489 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 490 | <li><a href="<?cs var:toroot ?>guide/webapps/targeting.html"> |
| 491 | <span class="en">Targeting Screens from Web Apps</span> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 492 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 493 | <li><a href="<?cs var:toroot ?>guide/webapps/webview.html"> |
| 494 | <span class="en">Building Web Apps in WebView</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 495 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 496 | <li><a href="<?cs var:toroot ?>guide/webapps/debugging.html"> |
| 497 | <span class="en">Debugging Web Apps</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 498 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 499 | <li><a href="<?cs var:toroot ?>guide/webapps/best-practices.html"> |
| 500 | <span class="en">Best Practices for Web Apps</span> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 501 | </a></li> |
| 502 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 503 | </li><!-- end of web apps --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 504 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 505 | <li class="nav-section"> |
| 506 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/practices/index.html"> |
| Scott Main | a21ac88 | 2012-01-30 15:27:37 -0800 | [diff] [blame] | 507 | <span class="en">Best Practices</span> |
| 508 | <span class="de" style="display:none">Bewährte Verfahren</span> |
| 509 | <span class="es" style="display:none">Prácticas recomendadas</span> |
| 510 | <span class="fr" style="display:none">Meilleures pratiques</span> |
| 511 | <span class="it" style="display:none">Best practice</span> |
| 512 | <span class="ja" style="display:none">ベスト プラクティス</span> |
| Dirk Dougherty | b582c678 | 2013-05-04 10:54:52 -0700 | [diff] [blame] | 513 | <span class="zh-cn" style="display:none">最佳实践</span> |
| 514 | <span class="zh-tw" style="display:none">最佳實務</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 515 | </div></a> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 516 | <ul> |
| Dirk Dougherty | a0711e7 | 2010-05-07 15:14:56 -0700 | [diff] [blame] | 517 | <li><a href="<?cs var:toroot ?>guide/practices/compatibility.html"> |
| 518 | <span class="en">Compatibility</span> |
| Scott Main | 2e5a22a | 2010-10-08 15:23:26 -0700 | [diff] [blame] | 519 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 520 | <li class="nav-section"> |
| 521 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/practices/screens_support.html"> |
| Scott Main | 6aa2b62 | 2011-03-09 14:26:58 -0800 | [diff] [blame] | 522 | <span class="en">Supporting Multiple Screens</span> |
| Scott Main | 9ed517d | 2011-09-21 21:04:19 -0700 | [diff] [blame] | 523 | </a></div> |
| Scott Main | 6aa2b62 | 2011-03-09 14:26:58 -0800 | [diff] [blame] | 524 | <ul> |
| 525 | <li><a href="<?cs var:toroot ?>guide/practices/screens-distribution.html"> |
| 526 | <span class="en">Distributing to Specific Screens</span> |
| Dirk Dougherty | f4b5540 | 2009-10-09 17:14:28 -0700 | [diff] [blame] | 527 | </a></li> |
| Scott Main | db90916 | 2011-06-22 14:28:44 -0700 | [diff] [blame] | 528 | <li><a href="<?cs var:toroot ?>guide/practices/screen-compat-mode.html"> |
| 529 | <span class="en">Screen Compatibility Mode</span> |
| Scott Main | 9ed517d | 2011-09-21 21:04:19 -0700 | [diff] [blame] | 530 | </a></li> |
| Scott Main | 6aa2b62 | 2011-03-09 14:26:58 -0800 | [diff] [blame] | 531 | </ul> |
| 532 | </li> |
| Scott Main | 5e44f68 | 2011-10-07 01:33:09 -0700 | [diff] [blame] | 533 | <li><a href="<?cs var:toroot ?>guide/practices/tablets-and-handsets.html"> |
| 534 | <span class="en">Supporting Tablets and Handsets</span> |
| Scott Main | 3e06f2c | 2012-03-30 10:29:33 -0700 | [diff] [blame] | 535 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 536 | |
| 537 | </ul> |
| 538 | </li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 539 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 540 | <!-- this needs to move |
| 541 | <li class="nav-section"> |
| 542 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/index.html"> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 543 | <span class="en">UI Guidelines</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 544 | </a></div> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 545 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 546 | <li class="nav-section"> |
| 547 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design.html"> |
| Scott Main | 258a51e | 2011-10-25 12:11:40 -0700 | [diff] [blame] | 548 | <span class="en">Icon Design</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 549 | </a></div> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 550 | <ul> |
| 551 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_launcher.html"> |
| Scott Main | 258a51e | 2011-10-25 12:11:40 -0700 | [diff] [blame] | 552 | <span class="en">Launcher Icons</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 553 | </a></li> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 554 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_menu.html"> |
| 555 | <span class="en">Menu Icons</span> |
| 556 | </a></li> |
| Roman Nurik | ced7edd | 2011-09-28 13:01:20 -0700 | [diff] [blame] | 557 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_action_bar.html"> |
| Scott Main | 258a51e | 2011-10-25 12:11:40 -0700 | [diff] [blame] | 558 | <span class="en">Action Bar Icons</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 559 | </a></li> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 560 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_status_bar.html"> |
| Scott Main | 258a51e | 2011-10-25 12:11:40 -0700 | [diff] [blame] | 561 | <span class="en">Status Bar Icons</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 562 | </a></li> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 563 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_tab.html"> |
| 564 | <span class="en">Tab Icons</span> |
| 565 | </a></li> |
| 566 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_dialog.html"> |
| 567 | <span class="en">Dialog Icons</span> |
| 568 | </a></li> |
| 569 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_list.html"> |
| 570 | <span class="en">List View Icons</span> |
| 571 | </a></li> |
| 572 | </ul> |
| 573 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 574 | <li><div><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/widget_design.html"> |
| Scott Main | 258a51e | 2011-10-25 12:11:40 -0700 | [diff] [blame] | 575 | <span class="en">App Widget Design</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 576 | </a></div> |
| 577 | </li> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 578 | </ul> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 579 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 580 | </ul> --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 581 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 582 | <!-- Remove |
| 583 | <li class="nav-section"> |
| 584 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/appendix/index.html"> |
| 585 | <span class="en">Appendix</span> |
| 586 | <span class="de" style="display:none">Anhang</span> |
| 587 | <span class="es" style="display:none">Apéndice</span> |
| 588 | <span class="fr" style="display:none">Annexes</span> |
| 589 | <span class="it" style="display:none">Appendice</span> |
| 590 | <span class="ja" style="display:none">付録</span> |
| Dirk Dougherty | b582c678 | 2013-05-04 10:54:52 -0700 | [diff] [blame] | 591 | <span class="zh-cn" style="display:none">附录</span> |
| 592 | <span class="zh-tw" style="display:none">附錄</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 593 | </a></div> |
| Scott Main | 65e62f4 | 2010-09-20 12:46:34 -0700 | [diff] [blame] | 594 | <ul> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 595 | <li><a href="<?cs var:toroot ?>guide/appendix/g-app-intents.html"> |
| 596 | <span class="en">Intents List: Google Apps</span> |
| 597 | </a></li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 598 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 599 | |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 600 | <li><a href="<?cs var:toroot ?>guide/appendix/glossary.html"> |
| 601 | <span class="en">Glossary</span> |
| 602 | </a></li> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 603 | </ul> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 604 | </li> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 605 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 606 | </li> |
| 607 | --> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 608 | </ul> |
| 609 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 610 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 611 | <script type="text/javascript"> |
| 612 | <!-- |
| 613 | buildToggleLists(); |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 614 | changeNavLang(getLangPref()); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 615 | //--> |
| 616 | </script> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 617 | |