| 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> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 149 | --> |
| 150 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/listview.html"> |
| 151 | <span class="en">List View</span> |
| 152 | </a></li> |
| 153 | <li><a href="<?cs var:toroot ?>guide/topics/ui/layout/gridview.html"> |
| 154 | <span class="en">Grid View</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 155 | </a></li> |
| Robert Ly | 3401c0e | 2011-10-12 10:01:41 -0700 | [diff] [blame] | 156 | </ul> |
| 157 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 158 | |
| 159 | <li class="nav-section"> |
| 160 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/ui/controls.html"> |
| 161 | <span class="en">Input Controls</span> |
| Robert Ly | 3401c0e | 2011-10-12 10:01:41 -0700 | [diff] [blame] | 162 | </a></div> |
| 163 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 164 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/button.html"> |
| 165 | <span class="en">Buttons</span> |
| 166 | </a></li> |
| 167 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/text.html"> |
| 168 | <span class="en">Text Fields</span> |
| 169 | </a></li> |
| 170 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/checkbox.html"> |
| 171 | <span class="en">Checkboxes</span> |
| 172 | </a></li> |
| 173 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/radiobutton.html"> |
| 174 | <span class="en">Radio Buttons</span> |
| 175 | </a></li> |
| 176 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/togglebutton.html"> |
| 177 | <span class="en">Toggle Buttons</span> |
| 178 | </a></li> |
| 179 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/spinner.html"> |
| 180 | <span class="en">Spinners</span> |
| 181 | </a></li> |
| 182 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/pickers.html"> |
| 183 | <span class="en">Pickers</span> |
| 184 | </a></li> |
| 185 | <!-- |
| 186 | <li><a href="<?cs var:toroot ?>guide/topics/ui/controls/progress.html"> |
| 187 | <span class="en">Seek and Progress Bars</span> |
| 188 | </a></li> |
| 189 | --> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 190 | </ul> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 191 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 192 | <li><a href="<?cs var:toroot ?>guide/topics/ui/ui-events.html"> |
| 193 | <span class="en">Input Events</span> |
| 194 | </a></li> |
| 195 | <li><a href="<?cs var:toroot ?>guide/topics/ui/menus.html"> |
| 196 | <span class="en">Menus</span></span> |
| 197 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 198 | <li><a href="<?cs var:toroot ?>guide/topics/ui/actionbar.html"> |
| 199 | <span class="en">Action Bar</span> |
| 200 | </a></li> |
| Scott Main | bbb3f41 | 2012-03-09 19:10:40 -0800 | [diff] [blame] | 201 | <li><a href="<?cs var:toroot ?>guide/topics/ui/settings.html"> |
| 202 | <span class="en">Settings</span> |
| 203 | </a></li> |
| Scott Main | e249763 | 2012-10-12 12:06:10 -0700 | [diff] [blame] | 204 | <li><a href="<?cs var:toroot ?>guide/topics/ui/dialogs.html"> |
| 205 | <span class="en">Dialogs</span> |
| 206 | </a></li> |
| 207 | <li><a href="<?cs var:toroot ?>guide/topics/ui/notifiers/notifications.html"> |
| 208 | <span class="en">Notifications</span> |
| 209 | </a></li> |
| 210 | <li><a href="<?cs var:toroot ?>guide/topics/ui/notifiers/toasts.html"> |
| 211 | <span class="en">Toasts</span> |
| 212 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 213 | <li class="nav-section"> |
| 214 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/search/index.html"> |
| 215 | <span class="en">Search</span> |
| 216 | </a></div> |
| 217 | <ul> |
| 218 | <li><a href="<?cs var:toroot ?>guide/topics/search/search-dialog.html">Creating a Search Interface</a></li> |
| 219 | <li><a href="<?cs var:toroot ?>guide/topics/search/adding-recent-query-suggestions.html">Adding Recent Query Suggestions</a></li> |
| 220 | <li><a href="<?cs var:toroot ?>guide/topics/search/adding-custom-suggestions.html">Adding Custom Suggestions</a></li> |
| 221 | <li><a href="<?cs var:toroot ?>guide/topics/search/searchable-config.html">Searchable Configuration</a></li> |
| 222 | </ul> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 223 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 224 | <li><a href="<?cs var:toroot ?>guide/topics/ui/drag-drop.html"> |
| 225 | <span class="en">Drag and Drop</span> |
| 226 | </a></li> |
| 227 | <li class="nav-section"> |
| 228 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/index.html"> |
| 229 | <span class="en">Accessibility</span> |
| 230 | </a></div> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 231 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 232 | <li><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/apps.html"> |
| 233 | <span class="en">Making Applications Accessible</span> |
| 234 | </a></li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 235 | <li><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/checklist.html"> |
| 236 | <span class="en">Accessibility Developer Checklist</span> |
| 237 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 238 | <li><a href="<?cs var:toroot ?>guide/topics/ui/accessibility/services.html"> |
| 239 | <span class="en">Building Accessibility Services</span> |
| 240 | </a></li> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 241 | </ul> |
| 242 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 243 | <li><a href="<?cs var:toroot ?>guide/topics/ui/themes.html"> |
| 244 | <span class="en">Styles and Themes</span> |
| 245 | </a></li> |
| 246 | <li><a href="<?cs var:toroot ?>guide/topics/ui/custom-components.html"> |
| 247 | <span class="en">Custom Components</span> |
| 248 | </a></li> |
| 249 | </ul> |
| 250 | </li><!-- end of User Interface --> |
| Robert Ly | f197b63 | 2011-06-08 22:23:42 -0700 | [diff] [blame] | 251 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 252 | <li class="nav-section"> |
| 253 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/resources/index.html"> |
| 254 | <span class="en">App Resources</span> |
| 255 | </a></div> |
| 256 | <ul> |
| 257 | <li><a href="<?cs var:toroot ?>guide/topics/resources/overview.html"> |
| 258 | <span class="en">Overview</span> |
| 259 | </a></li> |
| 260 | <li><a href="<?cs var:toroot ?>guide/topics/resources/providing-resources.html"> |
| 261 | <span class="en">Providing Resources</span> |
| 262 | </a></li> |
| 263 | <li><a href="<?cs var:toroot ?>guide/topics/resources/accessing-resources.html"> |
| 264 | <span class="en">Accessing Resources</span> |
| 265 | </a></li> |
| 266 | <li><a href="<?cs var:toroot ?>guide/topics/resources/runtime-changes.html"> |
| 267 | <span class="en">Handling Runtime Changes</span> |
| 268 | </a></li> |
| 269 | <li><a href="<?cs var:toroot ?>guide/topics/resources/localization.html"> |
| 270 | <span class="en">Localization</span> |
| 271 | </a></li> |
| 272 | <li class="nav-section"> |
| 273 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/resources/available-resources.html"> |
| 274 | <span class="en">Resource Types</span> |
| 275 | </a></div> |
| 276 | <ul> |
| 277 | <li><a href="<?cs var:toroot ?>guide/topics/resources/animation-resource.html">Animation</a></li> |
| 278 | <li><a href="<?cs var:toroot ?>guide/topics/resources/color-list-resource.html">Color State List</a></li> |
| 279 | <li><a href="<?cs var:toroot ?>guide/topics/resources/drawable-resource.html">Drawable</a></li> |
| 280 | <li><a href="<?cs var:toroot ?>guide/topics/resources/layout-resource.html">Layout</a></li> |
| 281 | <li><a href="<?cs var:toroot ?>guide/topics/resources/menu-resource.html">Menu</a></li> |
| 282 | <li><a href="<?cs var:toroot ?>guide/topics/resources/string-resource.html">String</a></li> |
| 283 | <li><a href="<?cs var:toroot ?>guide/topics/resources/style-resource.html">Style</a></li> |
| 284 | <li><a href="<?cs var:toroot ?>guide/topics/resources/more-resources.html">More Types</a></li> |
| 285 | </ul> |
| 286 | </li><!-- end of resource types --> |
| 287 | </ul> |
| 288 | </li><!-- end of app resources --> |
| 289 | |
| 290 | <li class="nav-section"> |
| 291 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/graphics/index.html"> |
| 292 | <span class="en">Animation and Graphics</span> |
| 293 | </a></div> |
| 294 | <ul> |
| 295 | <li class="nav-section"> |
| 296 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/overview.html"> |
| 297 | <span class="en">Overview</span> |
| 298 | </a></li> |
| 299 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/prop-animation.html"> |
| 300 | <span class="en">Property Animation</span> |
| 301 | </a></li> |
| 302 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/view-animation.html"> |
| 303 | <span class="en">View Animation</span> |
| 304 | </a></li> |
| 305 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/drawable-animation.html"> |
| 306 | <span class="en">Drawable Animation</span> |
| 307 | </a></li> |
| 308 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/2d-graphics.html"> |
| 309 | <span class="en">Canvas and Drawables</span> |
| 310 | </a></li> |
| 311 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/opengl.html"> |
| Joe Fernandez | b5c29e7 | 2013-07-09 12:20:36 -0700 | [diff] [blame] | 312 | <span class="en">OpenGL ES</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 313 | </a></li> |
| 314 | <li><a href="<?cs var:toroot ?>guide/topics/graphics/hardware-accel.html"> |
| 315 | <span class="en">Hardware Acceleration</span> |
| 316 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 317 | </ul> |
| 318 | </li><!-- end of graphics and animation--> |
| 319 | |
| Robert Ly | 864090e | 2012-06-17 18:22:17 -0700 | [diff] [blame] | 320 | <li class="nav-section"> |
| 321 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/renderscript/index.html"> |
| 322 | <span class="en">Computation</span> |
| 323 | </a></div> |
| 324 | <ul> |
| 325 | <li><a href="<?cs var:toroot ?>guide/topics/renderscript/compute.html"> |
| Tim Murray | 015d268 | 2013-05-30 12:34:40 -0700 | [diff] [blame] | 326 | <span class="en">RenderScript</span></a> |
| Robert Ly | 864090e | 2012-06-17 18:22:17 -0700 | [diff] [blame] | 327 | </li> |
| 328 | |
| 329 | <li><a href="<?cs var:toroot ?>guide/topics/renderscript/advanced.html"> |
| Tim Murray | 015d268 | 2013-05-30 12:34:40 -0700 | [diff] [blame] | 330 | <span class="en">Advanced RenderScript</span></a> |
| Robert Ly | 864090e | 2012-06-17 18:22:17 -0700 | [diff] [blame] | 331 | </li> |
| 332 | <li><a href="<?cs var:toroot ?>guide/topics/renderscript/reference.html"> |
| 333 | <span class="en">Runtime API Reference</span></a> |
| 334 | </li> |
| 335 | </ul> |
| 336 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 337 | <li class="nav-section"> |
| 338 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/media/index.html"> |
| 339 | <span class="en">Media and Camera</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 340 | </a></div> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 341 | <ul> |
| 342 | <li><a href="<?cs var:toroot ?>guide/topics/media/mediaplayer.html"> |
| 343 | <span class="en">Media Playback</span></a> |
| 344 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 345 | <li><a href="<?cs var:toroot ?>guide/appendix/media-formats.html"> |
| 346 | <span class="en">Supported Media Formats</span></a> |
| 347 | </li> |
| 348 | <li><a href="<?cs var:toroot ?>guide/topics/media/audio-capture.html"> |
| 349 | <span class="en">Audio Capture</span></a> |
| 350 | </li> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 351 | <li><a href="<?cs var:toroot ?>guide/topics/media/jetplayer.html"> |
| 352 | <span class="en">JetPlayer</span></a> |
| 353 | </li> |
| 354 | <li><a href="<?cs var:toroot ?>guide/topics/media/camera.html"> |
| 355 | <span class="en">Camera</span></a> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 356 | </li> |
| Joe Fernandez | 99b70f3 | 2011-08-22 15:49:52 -0700 | [diff] [blame] | 357 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 358 | </li><!-- end of media and camera --> |
| 359 | |
| 360 | <li class="nav-section"> |
| 361 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/sensors/index.html"> |
| 362 | <span class="en">Location and Sensors</span> |
| Scott Main | 3e06f2c | 2012-03-30 10:29:33 -0700 | [diff] [blame] | 363 | </a></div> |
| Bill Gruber | f8c029e | 2011-11-01 09:31:57 -0700 | [diff] [blame] | 364 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 365 | <li><a href="<?cs var:toroot ?>guide/topics/location/index.html"> |
| 366 | <span class="en">Location and Maps</span> |
| 367 | </a> |
| 368 | <li><a href="<?cs var:toroot ?>guide/topics/location/strategies.html"> |
| 369 | <span class="en">Location Strategies</span> |
| 370 | </a></li> |
| Bill Gruber | f8c029e | 2011-11-01 09:31:57 -0700 | [diff] [blame] | 371 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_overview.html"> |
| 372 | <span class="en">Sensors Overview</span> |
| 373 | </a></li> |
| 374 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_motion.html"> |
| 375 | <span class="en">Motion Sensors</span> |
| 376 | </a></li> |
| 377 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_position.html"> |
| 378 | <span class="en">Position Sensors</span> |
| 379 | </a></li> |
| 380 | <li><a href="<?cs var:toroot ?>guide/topics/sensors/sensors_environment.html"> |
| 381 | <span class="en">Environment Sensors</span> |
| 382 | </a></li> |
| 383 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 384 | </li><!-- end of location and sensors --> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 385 | |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 386 | |
| 387 | |
| kmccormick | f14ff1c | 2013-06-06 11:14:57 -0700 | [diff] [blame] | 388 | <li class="nav-section"> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 389 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/connectivity/index.html"> |
| 390 | <span class="en">Connectivity</span> |
| Scott Main | fa4596e | 2010-08-17 20:29:03 -0700 | [diff] [blame] | 391 | </a></div> |
| 392 | <ul> |
| kmccormick | f14ff1c | 2013-06-06 11:14:57 -0700 | [diff] [blame] | 393 | <li class="nav-section"> |
| 394 | <div class="nav-section-header"><a href="<?cs var:toroot?>guide/topics/connectivity/bluetooth.html"> |
| 395 | <span class="en">Bluetooth</span></a> |
| 396 | </div> |
| 397 | <ul> |
| 398 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/bluetooth-le.html">Bluetooth Low Energy</a></li> |
| 399 | </ul> |
| 400 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 401 | <li class="nav-section"> |
| 402 | <div class="nav-section-header"><a href="<?cs var:toroot?>guide/topics/connectivity/nfc/index.html"> |
| 403 | <span class="en">NFC</span></a> |
| Robert Ly | 83a75a5 | 2011-09-25 12:14:19 -0700 | [diff] [blame] | 404 | </div> |
| 405 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 406 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/nfc/nfc.html">NFC Basics</a></li> |
| 407 | <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] | 408 | </ul> |
| 409 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 410 | <li><a href="<?cs var:toroot?>guide/topics/connectivity/wifip2p.html"> |
| Scott Main | f5e0970 | 2013-08-22 17:19:17 -0700 | [diff] [blame] | 411 | <span class="en">Wi-Fi P2P</span></a> |
| Robert Ly | 12a1de0 | 2011-11-02 11:56:50 -0700 | [diff] [blame] | 412 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 413 | <li class="nav-section"> |
| 414 | <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] | 415 | <span class="en">USB</span></a> |
| Robert Ly | bde2b92 | 2011-04-18 10:18:30 -0700 | [diff] [blame] | 416 | </div> |
| 417 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 418 | <li><a href="<?cs var:toroot ?>guide/topics/connectivity/usb/accessory.html">Accessory</a></li> |
| 419 | <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] | 420 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 421 | </li> |
| 422 | <li><a href="<?cs var:toroot?>guide/topics/connectivity/sip.html"> |
| 423 | <span class="en">SIP</span> |
| 424 | </a> |
| 425 | </li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 426 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 427 | </ul> |
| 428 | </li><!-- end of connectivity --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 429 | |
| kmccormick | f14ff1c | 2013-06-06 11:14:57 -0700 | [diff] [blame] | 430 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 431 | <li class="nav-section"> |
| 432 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/text/index.html"> |
| 433 | <span class="en">Text and Input</span> |
| 434 | </a></div> |
| 435 | <ul> |
| 436 | <li><a href="<?cs var:toroot ?>guide/topics/text/copy-paste.html"> |
| 437 | <span class="en">Copy and Paste</span> |
| 438 | </a></li> |
| 439 | <li><a href="<?cs var:toroot ?>guide/topics/text/creating-input-method.html"> |
| 440 | <span class="en">Creating an IME</span> |
| 441 | </a></li> |
| 442 | <li><a href="<?cs var:toroot ?>guide/topics/text/spell-checker-framework.html"> |
| 443 | <span class="en">Spelling Checker</span> |
| 444 | </a></li> |
| 445 | </ul> |
| 446 | </li><!-- end of text and input --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 447 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 448 | <li class="nav-section"> |
| 449 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/topics/data/index.html"> |
| 450 | <span class="en">Data Storage</span> |
| 451 | </a></div> |
| 452 | <ul> |
| 453 | <li><a href="<?cs var:toroot ?>guide/topics/data/data-storage.html"> |
| 454 | <span class="en">Storage Options</span> |
| 455 | </a></li> |
| 456 | <li><a href="<?cs var:toroot ?>guide/topics/data/backup.html"> |
| 457 | <span class="en">Data Backup</span> |
| Scott Main | 223a94d | 2011-05-06 09:53:29 -0700 | [diff] [blame] | 458 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 459 | <li><a href="<?cs var:toroot ?>guide/topics/data/install-location.html"> |
| 460 | <span class="en">App Install Location</span> |
| 461 | </a></li> |
| 462 | </ul> |
| 463 | </li><!-- end of data storage --> |
| 464 | |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 465 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 466 | <li class="nav-section"> |
| 467 | <div class="nav-section-header"><a href="<?cs var:toroot?>guide/topics/admin/index.html"> |
| 468 | <span class="en">Administration</span> |
| 469 | </a></div> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 470 | <ul> |
| 471 | <li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 472 | <a href="<?cs var:toroot?>guide/topics/admin/device-admin.html"> |
| 473 | <span class="en">Device Policies</span></a> |
| 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 | <!-- |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 476 | <li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 477 | <a href="<?cs var:toroot?>guide/topics/admin/keychain.html"> |
| 478 | <span class="en">Certificate Store</span></a> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 479 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 480 | --> |
| Joe Malin | a7fda21 | 2010-10-18 17:07:45 -0700 | [diff] [blame] | 481 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 482 | </li><!-- end of administration --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 483 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 484 | <li class="nav-section"> |
| 485 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/webapps/index.html"> |
| 486 | <span class="en">Web Apps</span> |
| 487 | </a></div> |
| Bill Gruber | df71cab | 2011-02-01 23:01:16 -0800 | [diff] [blame] | 488 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 489 | <li><a href="<?cs var:toroot ?>guide/webapps/overview.html"> |
| 490 | <span class="en">Overview</span> |
| Bill Gruber | 6c60e9a | 2011-09-08 15:41:22 -0700 | [diff] [blame] | 491 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 492 | <li><a href="<?cs var:toroot ?>guide/webapps/targeting.html"> |
| 493 | <span class="en">Targeting Screens from Web Apps</span> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 494 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 495 | <li><a href="<?cs var:toroot ?>guide/webapps/webview.html"> |
| 496 | <span class="en">Building Web Apps in WebView</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 497 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 498 | <li><a href="<?cs var:toroot ?>guide/webapps/debugging.html"> |
| 499 | <span class="en">Debugging Web Apps</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 500 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 501 | <li><a href="<?cs var:toroot ?>guide/webapps/best-practices.html"> |
| 502 | <span class="en">Best Practices for Web Apps</span> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 503 | </a></li> |
| 504 | </ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 505 | </li><!-- end of web apps --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 506 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 507 | <li class="nav-section"> |
| 508 | <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] | 509 | <span class="en">Best Practices</span> |
| 510 | <span class="de" style="display:none">Bewährte Verfahren</span> |
| 511 | <span class="es" style="display:none">Prácticas recomendadas</span> |
| 512 | <span class="fr" style="display:none">Meilleures pratiques</span> |
| 513 | <span class="it" style="display:none">Best practice</span> |
| 514 | <span class="ja" style="display:none">ベスト プラクティス</span> |
| Dirk Dougherty | b582c678 | 2013-05-04 10:54:52 -0700 | [diff] [blame] | 515 | <span class="zh-cn" style="display:none">最佳实践</span> |
| 516 | <span class="zh-tw" style="display:none">最佳實務</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 517 | </div></a> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 518 | <ul> |
| Dirk Dougherty | a0711e7 | 2010-05-07 15:14:56 -0700 | [diff] [blame] | 519 | <li><a href="<?cs var:toroot ?>guide/practices/compatibility.html"> |
| 520 | <span class="en">Compatibility</span> |
| Scott Main | 2e5a22a | 2010-10-08 15:23:26 -0700 | [diff] [blame] | 521 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 522 | <li class="nav-section"> |
| 523 | <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] | 524 | <span class="en">Supporting Multiple Screens</span> |
| Scott Main | 9ed517d | 2011-09-21 21:04:19 -0700 | [diff] [blame] | 525 | </a></div> |
| Scott Main | 6aa2b62 | 2011-03-09 14:26:58 -0800 | [diff] [blame] | 526 | <ul> |
| 527 | <li><a href="<?cs var:toroot ?>guide/practices/screens-distribution.html"> |
| 528 | <span class="en">Distributing to Specific Screens</span> |
| Dirk Dougherty | f4b5540 | 2009-10-09 17:14:28 -0700 | [diff] [blame] | 529 | </a></li> |
| Scott Main | db90916 | 2011-06-22 14:28:44 -0700 | [diff] [blame] | 530 | <li><a href="<?cs var:toroot ?>guide/practices/screen-compat-mode.html"> |
| 531 | <span class="en">Screen Compatibility Mode</span> |
| Scott Main | 9ed517d | 2011-09-21 21:04:19 -0700 | [diff] [blame] | 532 | </a></li> |
| Scott Main | 6aa2b62 | 2011-03-09 14:26:58 -0800 | [diff] [blame] | 533 | </ul> |
| 534 | </li> |
| Scott Main | 5e44f68 | 2011-10-07 01:33:09 -0700 | [diff] [blame] | 535 | <li><a href="<?cs var:toroot ?>guide/practices/tablets-and-handsets.html"> |
| 536 | <span class="en">Supporting Tablets and Handsets</span> |
| Scott Main | 3e06f2c | 2012-03-30 10:29:33 -0700 | [diff] [blame] | 537 | </a></li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 538 | |
| 539 | </ul> |
| 540 | </li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 541 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 542 | <!-- this needs to move |
| 543 | <li class="nav-section"> |
| 544 | <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] | 545 | <span class="en">UI Guidelines</span> |
| Scott Main | d25ad2f | 2011-12-15 13:11:12 -0800 | [diff] [blame] | 546 | </a></div> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 547 | <ul> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 548 | <li class="nav-section"> |
| 549 | <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] | 550 | <span class="en">Icon Design</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 551 | </a></div> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 552 | <ul> |
| 553 | <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] | 554 | <span class="en">Launcher Icons</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 555 | </a></li> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 556 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_menu.html"> |
| 557 | <span class="en">Menu Icons</span> |
| 558 | </a></li> |
| Roman Nurik | ced7edd | 2011-09-28 13:01:20 -0700 | [diff] [blame] | 559 | <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] | 560 | <span class="en">Action Bar Icons</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 561 | </a></li> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 562 | <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] | 563 | <span class="en">Status Bar Icons</span> |
| Scott Main | eb5dacd | 2012-01-09 17:36:46 -0800 | [diff] [blame] | 564 | </a></li> |
| Roman Nurik | d602b35 | 2010-10-17 21:33:05 -0700 | [diff] [blame] | 565 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_tab.html"> |
| 566 | <span class="en">Tab Icons</span> |
| 567 | </a></li> |
| 568 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_dialog.html"> |
| 569 | <span class="en">Dialog Icons</span> |
| 570 | </a></li> |
| 571 | <li><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/icon_design_list.html"> |
| 572 | <span class="en">List View Icons</span> |
| 573 | </a></li> |
| 574 | </ul> |
| 575 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 576 | <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] | 577 | <span class="en">App Widget Design</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 578 | </a></div> |
| 579 | </li> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 580 | </ul> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 581 | </li> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 582 | </ul> --> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 583 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 584 | <!-- Remove |
| 585 | <li class="nav-section"> |
| 586 | <div class="nav-section-header"><a href="<?cs var:toroot ?>guide/appendix/index.html"> |
| 587 | <span class="en">Appendix</span> |
| 588 | <span class="de" style="display:none">Anhang</span> |
| 589 | <span class="es" style="display:none">Apéndice</span> |
| 590 | <span class="fr" style="display:none">Annexes</span> |
| 591 | <span class="it" style="display:none">Appendice</span> |
| 592 | <span class="ja" style="display:none">付録</span> |
| Dirk Dougherty | b582c678 | 2013-05-04 10:54:52 -0700 | [diff] [blame] | 593 | <span class="zh-cn" style="display:none">附录</span> |
| 594 | <span class="zh-tw" style="display:none">附錄</span> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 595 | </a></div> |
| Scott Main | 65e62f4 | 2010-09-20 12:46:34 -0700 | [diff] [blame] | 596 | <ul> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 597 | <li><a href="<?cs var:toroot ?>guide/appendix/g-app-intents.html"> |
| 598 | <span class="en">Intents List: Google Apps</span> |
| 599 | </a></li> |
| Joe Fernandez | 8982939 | 2012-08-01 16:21:17 -0700 | [diff] [blame] | 600 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 601 | |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 602 | <li><a href="<?cs var:toroot ?>guide/appendix/glossary.html"> |
| 603 | <span class="en">Glossary</span> |
| 604 | </a></li> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 605 | </ul> |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 606 | </li> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 607 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 608 | </li> |
| 609 | --> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 610 | </ul> |
| 611 | |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 612 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 613 | <script type="text/javascript"> |
| 614 | <!-- |
| 615 | buildToggleLists(); |
| Dirk Dougherty | 13d30dc3 | 2009-07-07 17:37:13 -0700 | [diff] [blame] | 616 | changeNavLang(getLangPref()); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 617 | //--> |
| 618 | </script> |
| Scott Main | 50e990c | 2012-06-21 17:14:39 -0700 | [diff] [blame] | 619 | |