resources-data.js revision d8afdb49ffaf727ff5d493854501d42c27faae28
1e577d72a3be20e589437271f0e5ca474fab38124Roman Nurikvar ANDROID_TAGS = {
2e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  type: {
3e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'article': 'Article',
4e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'tutorial': 'Tutorial',
5e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'sample': 'Sample',
6e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'video': 'Video',
7e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'library': 'Code Library'
8e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
9e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  topic: {
10e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'accessibility': 'Accessibility',
11e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'accountsync': 'Accounts & Sync',
12e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'bestpractice': 'Best Practices',
13e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'communication': 'Communication',
14e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'compatibility': 'Compatibility',
15e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'data': 'Data Access',
16e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'drawing': 'Canvas Drawing',
17e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'gamedev': 'Game Development',
18e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'gl': 'OpenGL ES',
19e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'input': 'Input Methods',
20e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'intent': 'Intents',
21e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'layout': 'Layouts/Views',
22e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'media': 'Multimedia',
23e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    'multitasking': 'Multi-tasking',
24e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'newfeature': 'New Features',
25e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'performance': 'Performance',
26e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'search': 'Search',
27e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'testing': 'Testing',
28e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'ui': 'User Interface',
2994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    'web': 'Web Content',
3094be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    'widgets': 'App Widgets'
31e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
32e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  misc: {
33e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'external': 'External',
349ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    'new': 'New',
359ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    'updated': 'Updated'
36e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  }
37e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik};
38e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
39e577d72a3be20e589437271f0e5ca474fab38124Roman Nurikvar ANDROID_RESOURCES = [
40e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
41e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik//////////////////////////
42e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/// TECHNICAL ARTICLES ///
43e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik//////////////////////////
44e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
45e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
46e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
47e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/avoiding-memory-leaks.html',
48e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
49e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Avoiding Memory Leaks'
50e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
51e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
52e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Mobile devices often have limited memory, and memory leaks can cause your application to waste this valuable resource without your knowledge. This article provides tips to help you avoid common causes of memory leaks on the Android platform.'
53e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
54e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
55e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
56e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'compatibility'],
57e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/backward-compatibility.html',
58e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
59e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Backward Compatibility'
60e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
61e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
62e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The Android platform strives to ensure backwards compatibility. However, sometimes you want to use new features which aren\'t supported on older platforms. This article discusses strategies for selectively using these features based on availability, allowing you to keep your applications portable across a wide range of devices.'
63e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
64e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
65e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
66e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'intent'],
67e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/can-i-use-this-intent.html',
68e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
69e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Can I Use this Intent?'
70e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
71e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
72e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Android offers a very powerful and yet easy-to-use message type called an intent. You can use intents to turn applications into high-level libraries and make code modular and reusable. While it is nice to be able to make use of a loosely coupled API, there is no guarantee that the intent you send will be received by another application. This article describes a technique you can use to find out whether the system contains any application capable of responding to the intent you want to use.'
73e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
74e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
75e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
76e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'input'],
77e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/creating-input-method.html',
78e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
79e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Creating an Input Method'
80e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
81e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
82e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Input Method Editors (IMEs) provide the mechanism for entering text into text fields and other Views. Android devices come bundled with at least one IME, but users can install additional IMEs. This article covers the basics of developing an IME for the Android platform.'
83e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
84e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
85e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
86e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'drawing', 'ui'],
87e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/drawable-mutations.html',
88e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
89e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Drawable Mutations'
90e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
91e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
92e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Drawables are pluggable drawing containers that allow applications to display graphics. This article explains some common pitfalls when trying to modify the properties of multiple Drawables.'
93e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
94e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
95e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
96e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'bestpractice', 'ui'],
97e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/faster-screen-orientation-change.html',
98e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
99e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Faster Screen Orientation Change'
100e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
101e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
102e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'When an Android device changes its orientation, the default behavior is to automatically restart the current activity with a new configuration. However, this can become a bottleneck in applications that access a large amount of external data. This article discusses how to gracefully handle this situation without resorting to manually processing configuration changes.'
103e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
104e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
105e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
106e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'compatibility'],
107e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/future-proofing.html',
108e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
109e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Future-Proofing Your Apps'
110e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
111e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
112e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A collection of common sense advice to help you ensure that your applications don\'t break when new versions of the Android platform are released.'
113e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
114e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
115e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
116e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'input'],
117e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/gestures.html',
118e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
119e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Gestures'
120e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
121e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
122e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Touch screens allow users to perform gestures, such as tapping, dragging, flinging, or sliding, to perform various actions. The gestures API enables your application to recognize even complicated gestures with ease. This article explains how to integrate this API into an application.'
123e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
124e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
125e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
126e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'gamedev', 'gl'],
127e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/glsurfaceview.html',
128e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
129e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Introducing GLSurfaceView'
130e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
131e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
132e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'This article provides an overview of GLSurfaceView, a class that makes it easy to implement 2D or 3D OpenGL rendering inside of an Android application.'
133e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
134e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
135e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
136e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'layout'],
137e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-reuse.html',
138e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
139e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Creating Reusable UI Components'
140e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
141e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
142e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn how to combine multiple standard UI widgets into a single high-level component, which can be reused throughout your application.'
143e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
144e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
145e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
146e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'layout', 'ui', 'performance', 'bestpractice'],
147e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-efficiency.html',
148e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
149e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Creating Efficient Layouts'
150e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
151e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
152e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn how to optimize application layouts as this article walks you through converting a LinearLayout into a RelativeLayout, and analyzes the resulting implications on performance.'
153e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
154e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
155e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
156e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'layout', 'ui', 'performance', 'bestpractice'],
157e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-stubs.html',
158e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
159e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Using ViewStubs'
160e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
161e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
162e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn about using ViewStubs inside an application\'s layout in order to inflate rarely used UI elements, without the performance implications which would otherwise be caused by using the <code>&lt;include&gt;</code> tag.'
163e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
164e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
165e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
166e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'layout', 'ui', 'performance', 'bestpractice'],
167e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-merge.html',
168e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
169e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Merging Layouts'
170e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
171e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
172e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn how to use the <code>&lt;merge&gt;</code> tag in your XML layouts in order to avoid unnecessary levels of hierarchy within an application\'s view tree.'
173e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
174e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
175e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
176e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'performance'],
177e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/listview-backgrounds.html',
178e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
179e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'ListView Backgrounds: An Optimization'
180e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
181e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
182e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'ListViews are very popular widgets within the Android framework. This article describes some of the optimizations used by the ListView widget, and how to avoid some common issues that this causes when trying to use a custom background.'
183e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
184e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
185e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
186a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article', 'ui'],
187e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/live-folders.html',
188e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
189e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Live Folders'
190e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
191e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
192e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Live Folders allow users to display any source of data on their home screen without launching an application. This article discusses how to export an application\'s data in a format suitable for display inside of a live folder.'
193e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
194e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
195e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
196a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article', 'ui'],
197e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/live-wallpapers.html',
198e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
199e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Live Wallpapers'
200e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
201e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
202e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Live wallpapers are richer, animated, interactive backgrounds that users can display in their home screens. Learn how to create a live wallpaper and bundle it in an application that users can install on their devices.'
203e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
204e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
205e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
206e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    tags: ['article', 'bestpractice', 'multitasking'],
207e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    path: 'articles/multitasking-android-way.html',
208e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    title: {
209e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik      en: 'Multitasking the Android Way'
210e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    },
211e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    description: {
212e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik      en: 'This article describes best practices and user experience guidelines for multi-tasking on Android.'
213e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    }
214e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik  },
215e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik  {
216e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'input'],
217e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/on-screen-inputs.html',
218e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
219e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Onscreen Input Methods'
220e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
221e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
222e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The Input Method Framework (IMF) allows users to take advantage of on-screen input methods, such as software keyboards. This article provides an overview of Input Method Editors (IMEs) and how applications interact with them.'
223e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
224e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
225e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
226e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
227e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/painless-threading.html',
228e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
229e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Painless Threading'
230e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
231e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
232e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'This article discusses the threading model used by Android applications and how applications can ensure best UI performance by spawning worker threads to handle long-running operations, rather than handling them in the main thread. The article also explains the API that your application can use to interact with Android UI toolkit components running on the main thread and spawn managed worker threads.'
233e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
234e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
235e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
236e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'search'],
237e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/qsb.html',
238e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
239e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Quick Search Box'
240e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
241e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
242e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Quick Search Box (QSB) is a powerful, system-wide search framework. QSB makes it possible for users to quickly and easily find what they\'re looking for, both on their devices and on the web. This article discusses how to work with the QSB framework to add new search results for an installed application.'
243e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
244e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
245e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
246ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik    tags: ['article', 'input', 'search', 'ui'],
247ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik    path: 'articles/speech-input.html',
248ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik    title: {
249ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik      en: 'Speech Input'
250ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik    },
251ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik    description: {
252ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik      en: 'This articles describes the basics of integrating speech recognition into Android applications.'
253ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik    }
254ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik  },
255ecaf3f4f28ac3ec12fa1c5dd967c0f2ffd5bd3a7Roman Nurik  {
256e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    tags: ['article', 'compatibility', 'multitasking'],
257e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    path: 'articles/service-api-changes-starting-with.html',
258e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    title: {
259e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik      en: 'Service API changes starting with Android 2.0'
260e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    },
261e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    description: {
262e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik      en: 'This article describes the changes and improvements to services introduced in Android 2.0, as well as strategies for compatibility with older versions of the platform.'
263e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik    }
264e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik  },
265e7d6007872af7f27b62bfb46aadf2b7a07c0eac0Roman Nurik  {
266e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui'],
267e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/touch-mode.html',
268e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
269e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Touch Mode'
270e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
271e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
272e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'This article explains the touch mode, one of the most important principles of Android\'s UI toolkit. Whenever a user interacts with a device\'s touch screen, the system enters touch mode. While simple in concept, there are important implications touch mode that are often overlooked.'
273e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
274e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
275e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
276e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
277e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/track-mem.html',
278e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
279e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Tracking Memory Allocations'
280e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
281e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
282e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'This article discusses how to use the Allocation Tracker tool to observe memory allocations and avoid performance problems that would otherwise be caused by ignoring the effect of Dalvik\'s garbage collector.'
283e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
284e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
285e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
286a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article'],
287e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/ui-1.5.html',
288e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
289e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'UI Framework Changes in Android 1.5'
290e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
291e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
292e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Explore the UI changes that were introduced in Android 1.5, compared with the UI provided in Android 1.0 and 1.1.'
293e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
294e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
295e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
296a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article'],
297e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/ui-1.6.html',
298e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
299e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'UI Framework Changes in Android 1.6'
300e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
301e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
302e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Explore the UI changes that were introduced in Android 1.6, compared with the UI provided in Android 1.5. In particular, this article discusses changes to RelativeLayouts and click listeners.'
303e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
304e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
305e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
306e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'bestpractice'],
307e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/timed-ui-updates.html',
308e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
309e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Updating the UI from a Timer'
310e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
311e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
312e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn about how to use Handlers as a more efficient replacement for java.util.Timer on the Android platform.'
313e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
314e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
315e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
316e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'accessibility'],
317e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/tts.html',
318e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
319e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Using Text-to-Speech'
320e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
321e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
322e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The text-to-speech API lets your application "speak" to users, in any of several languages. This article provides an overview of the TTS API and how you use to add speech capabilities to your application.'
323e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
324e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
325e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
326b410330b2eb1617fe75b2e61995a6987a5172510Scott Main    tags: ['article', 'accountsync', 'data'],
327b410330b2eb1617fe75b2e61995a6987a5172510Scott Main    path: 'articles/contacts.html',
328b410330b2eb1617fe75b2e61995a6987a5172510Scott Main    title: {
329b410330b2eb1617fe75b2e61995a6987a5172510Scott Main      en: 'Using the Contacts API'
330b410330b2eb1617fe75b2e61995a6987a5172510Scott Main    },
331b410330b2eb1617fe75b2e61995a6987a5172510Scott Main    description: {
332b410330b2eb1617fe75b2e61995a6987a5172510Scott Main      en: 'Android provides a Contacts API for managing and integrating contacts from multiple accounts and data sources and allows apps to read various information about individual contacts.'
333b410330b2eb1617fe75b2e61995a6987a5172510Scott Main    }
334b410330b2eb1617fe75b2e61995a6987a5172510Scott Main  },
335b410330b2eb1617fe75b2e61995a6987a5172510Scott Main  {
336e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'web'],
337e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/using-webviews.html',
338e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
339e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Using WebViews'
340e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
341e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
342e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'WebViews allow an application to dynamically display HTML and execute JavaScript, without relinquishing control to a separate browser application. This article introduces the WebView classes and provides a sample application that demonstrates its use.'
343e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
344e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
345e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
346e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui'],
347e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/wikinotes-linkify.html',
348e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
349e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'WikiNotes: Linkify your Text!'
350e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
351e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
352e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'This article introduces WikiNotes for Android, part of the Apps for Android project. It covers the use of Linkify to turn ordinary text views into richer, link-oriented content that causes Android intents to fire when a link is selected.'
353e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
354e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
355e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
356e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'intent'],
357e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/wikinotes-intents.html',
358e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
359e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'WikiNotes: Routing Intents'
360e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
361e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
362e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'This article illustrates how an application, in this case the WikiNotes sample app, can use intents to route various types of linked text to the application that handles that type of data. For example, an app can use intents to route a linked telephone number to a dialer app and a web URL to a browser.'
363e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
364e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
365e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
366e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'performance'],
367e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/window-bg-speed.html',
368e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
369e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Window Backgrounds & UI Speed'
370e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
371e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
372e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Some Android applications need to squeeze every bit of performance out of the UI toolkit and there are many ways to do so. In this article, you will discover how to speed up the drawing and the perceived startup time of your activities. Both of these techniques rely on a single feature, the window\'s background drawable.'
373e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
374e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
375e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
376e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
377e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/zipalign.html',
378e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
379e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Zipalign: an Easy Optimization'
380e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
381e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
382e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The Android SDK includes a tool called zipalign that optimizes the way an application is packaged. Running zipalign against your application enables Android to interact with it more efficiently at run time and thus has the potential to make it and the overall system run faster. This article provides a high-level overview of the zipalign tool and its use.'
383e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
384e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
385e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
386e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik///////////////////
387e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/// SAMPLE CODE ///
388e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik///////////////////
3893f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly
3903f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
3919ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample'],
3923f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/AccelerometerPlay/index.html',
3933f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
3943f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Accelerometer Play'
3953f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
3963f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
39794be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik      en: 'An example of using the accelerometer to integrate the device\'s acceleration to a position using the Verlet method. This is illustrated with a very simple particle system comprised of a few iron balls freely moving on an inclined wooden table. The inclination of the virtual table is controlled by the device\'s accelerometer.'
3983f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
3993f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
4003f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
4019ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'accessibility'],
4023f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/AccessibilityService/index.html',
4033f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
4043f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Accessibility Service'
4053f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
4063f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
4073f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Illustrates an accessibility service that provides custom feedback for the Clock application which comes by default with Android devices'
4083f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
4093f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
410e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
411d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly    tags: ['sample', 'new'],
412d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly    path: 'samples/AndroidBeam/index.html',
413d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly    title: {
414d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly      en: 'Android Beam'
415d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly    },
416d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly    description: {
417d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly      en: 'An example of how to use the Android Beam feature to send messages between two Android-powered devices (API level 14 or later) that support NFC.'
418d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly    }
419d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly  },
420d8afdb49ffaf727ff5d493854501d42c27faae28Robert Ly  {
421e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'layout', 'ui'],
422e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/ApiDemos/index.html',
423e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
424e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'API Demos'
425e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
426e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
427e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A variety of small applications that demonstrate an extensive collection of framework topics.'
428e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
429e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
430e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
4319ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'layout', 'ui', 'fragment', 'loader'],
4322f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    path: 'samples/Support4Demos/index.html',
4332f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    title: {
4342f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn      en: 'API 4+ Support Demos'
4352f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    },
4362f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    description: {
4372f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn      en: 'A variety of small applications that demonstrate the use of the helper classes in the Android API 4+ Support Library (classes which work down to API level 4 or version 1.6 of the platform).'
4382f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    }
4392f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn  },
4402f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn  {
4419ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'layout', 'ui'],
4422f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    path: 'samples/Support13Demos/index.html',
4432f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    title: {
4442f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn      en: 'API 13+ Support Demos'
4452f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    },
4462f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    description: {
4472f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn      en: 'A variety of small applications that demonstrate the use of the helper classes in the Android API 13+ Support Library (classes which work down to API level 13 or version 3.2 of the platform).'
4482f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn    }
4492f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn  },
4502f04883ff880966d63d1aa4a1c7b05e497cfcc58Dianne Hackborn  {
4513f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'data', 'newfeature', 'accountsync'],
452e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/BackupRestore/index.html',
453e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
454e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Backup and Restore'
455e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
456e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
457e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Illustrates a few different approaches that an application developer can take when integrating with the Android Backup Manager using the BackupAgent API introduced in Android 2.2.'
458e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
459e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
460e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
461e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'communication'],
462e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/BluetoothChat/index.html',
463e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
464e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Bluetooth Chat'
465e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
466e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
467e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An application for two-way text messaging over Bluetooth.'
468e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
469e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
470e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
471e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'accountsync'],
472e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/BusinessCard/index.html',
473e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
474e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'BusinessCard'
475e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
476e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
477e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An application that demonstrates how to launch the built-in contact picker from within an activity. This sample also uses reflection to ensure that the correct version of the contacts API is used, depending on which API level the application is running under.'
478e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
479e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
480e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
481e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'accountsync'],
482e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/ContactManager/index.html',
483e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
484e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Contact Manager'
485e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
486e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
487e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An application that demonstrates how to query the system contacts provider  using the <code>ContactsContract</code> API, as well as insert contacts into a specific account.'
488e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
489e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
490e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
4913f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'ui'],
4923f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/CubeLiveWallpaper/index.html',
4933f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
4943f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Cube Live Wallpaper'
4953f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
4963f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
4973f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'An application that demonstrates how to create a live wallpaper and  bundle it in an application that users can install on their devices.'
4983f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
4993f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
5003f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
501e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample'],
502e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Home/index.html',
503e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
504e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Home'
505e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
506e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
507e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A home screen replacement application.'
508d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    }
509d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas  },
510d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas  {
5119ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'updated', 'newfeature', 'ui'],
512a35f65692d9f97264dc939d5749db86845141810Roman Nurik    path: 'samples/HoneycombGallery/index.html',
513d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    title: {
514d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas      en: 'Honeycomb Gallery'
515d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    },
516d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    description: {
5179ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main      en: 'An image gallery application that demonstrates a variety of new APIs in Android 3.0 (Honeycomb). In addition to providing a tablet-optimized design, it also supports handsets running Android 4.0 (Ice Cream Sandwich) and beyond, so is a good example of how to reuse Fragments to support different screen sizes.'
518e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
519e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
520e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
521e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'gamedev', 'media'],
522e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/JetBoy/index.html',
523e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
524e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'JetBoy'
525e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
526e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
527e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A game that demonstrates the SONiVOX JET interactive music technology, with <code><a href="/reference/android/media/JetPlayer.html">JetPlayer</a></code>.'
528e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
529e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
530e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
531e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'gamedev', 'media'],
532e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/LunarLander/index.html',
533e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
534e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Lunar Lander'
535e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
536e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
537e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A classic Lunar Lander game.'
538e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
539e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
540e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
541e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'ui', 'bestpractice', 'layout'],
542e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/MultiResolution/index.html',
543e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
544e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Multiple Resolutions'
545e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
546e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
547e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A sample application that shows how to use resource directory qualifiers to provide different resources for different screen configurations.'
548e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
549e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
550e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
551e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'data'],
5523f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/NFCDemo/index.html',
5533f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
5543f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'NFC Demo'
5553f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
5563f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
5573f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'An application for reading NFC Forum Type 2 Tags using the NFC APIs'
5583f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
5593f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
5603f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
5613f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'data'],
562e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/NotePad/index.html',
563e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
564e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Note Pad'
565e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
566e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
567e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An application for saving notes. Similar (but not identical) to the <a href="/resources/tutorials/notepad/index.html">Notepad tutorial</a>.'
568e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
569e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
570e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
5719ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'media' ],
5729e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira    path: 'samples/RandomMusicPlayer/index.html',
5739e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira    title: {
5749e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira      en: 'Random Music Player'
5759e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira    },
5769e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira    description: {
5779e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira      en: 'Demonstrates how to write a multimedia application that plays music from the device and from URLs. It manages media playback from a service and can play music in the background, respecting audio focus changes.'
5789e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira    }
5799e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira  },
5809e67587d022675f4b6f62e565b23745c4a550ed9Bruno Oliveira  {
5819ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'newfeature', 'performance', 'gamedev', 'gl'],
58244b362c34066764b6711ce04923ce71b5d011283Robert Ly    path: 'samples/RenderScript/index.html',
5836518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    title: {
58444b362c34066764b6711ce04923ce71b5d011283Robert Ly      en: 'RenderScript'
5856518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    },
5866518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    description: {
58744b362c34066764b6711ce04923ce71b5d011283Robert Ly      en: 'A set of samples that demonstrate how to use various features of the RenderScript APIs.'
5886518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    }
5896518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly  },
5906518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly  {
591e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'accountsync'],
592e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/SampleSyncAdapter/index.html',
593e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
594e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'SampleSyncAdapter'
595e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
596e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
597e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Demonstrates how an application can communicate with a cloud-based service and synchronize its data with data stored locally in a content provider. The sample uses two related parts of the Android framework &mdash; the account manager and the synchronization manager (through a sync adapter).'
598e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
599e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
600e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
601183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'ui', 'search'],
602e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/SearchableDictionary/index.html',
603e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
604e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Searchable Dictionary v2'
605e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
606e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
607e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A sample application that demonstrates Android\'s search framework, including how to provide search suggestions for Quick Search Box.'
608e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
609e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
610e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
6113f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample'],
6123f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/SipDemo/index.html',
6133f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
6143f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'SIP Demo'
6153f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
6163f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
6173f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'A demo application highlighting how to make internet-based calls with the SIP API.'
6183f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
6193f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
6203f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
621e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'layout', 'ui'],
622e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Snake/index.html',
623e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
624e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Snake'
625e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
626e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
627e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An implementation of the classic game "Snake."'
628e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
629e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
630e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
6313f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'input'],
6323f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/SoftKeyboard/index.html',
6333f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
6343f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Soft Keyboard'
6353f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
6363f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
6373f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'An example of writing an input method for a software keyboard.'
6383f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
6393f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
6403f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
641183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'testing'],
642e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Spinner/index.html',
643e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
644e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Spinner'
645e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
646e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
647e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A simple application that serves as an application under test for the SpinnerTest example.'
648e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
649e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
650e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
651183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'testing'],
652e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/SpinnerTest/index.html',
653e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
654e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'SpinnerTest'
655e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
656e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
657e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The test application for the Activity Testing tutorial. It tests the Spinner example application.'
658e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
659e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
660e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
6619ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'newfeature', 'widgets'],
662fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    path: 'samples/StackWidget/index.html',
663fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    title: {
664d873e660c57eabb15a95acf71398c38929504284Scott Main      en: 'StackView Widget'
665fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    },
666fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    description: {
667fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen      en: 'Demonstrates how to create a simple collection widget containing a StackView.'
668fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    }
669fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen  },
670fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen  {
671183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'newfeature'],
672e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/TicTacToeLib/index.html',
673e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
674e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'TicTacToeLib'
675e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
676e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
677e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An example of an Android library project, a type of project that lets you store and manage shared code and resources in one place, then make them available to your other Android applications.'
678e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
679e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
680e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
681183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'newfeature',],
682e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/TicTacToeMain/index.html',
683e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
684e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'TicTacToeMain'
685e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
686e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
687e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Demonstrates how an application can make use of shared code and resources stored in an Android library project.'
688e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
689e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
690e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
6919ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'newfeature'],
6928cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly    path: 'samples/USB/index.html',
6938cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly    title: {
6948cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly      en: 'USB'
6958cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly    },
6968cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly    description: {
6978cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly      en: 'A set of samples that demonstrate how to use various features of the USB APIs.'
6988cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly    }
6998cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly  },
7008cdb2e2d834fc1dbff8d02124a08c0f426aa1de7Robert Ly  {
701acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee    tags: ['sample', 'data', 'new'],
702acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee    path: 'samples/VoicemailProviderDemo/index.html',
703acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee    title: {
704acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee      en: 'Voicemail Provider Demo'
705acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee    },
706acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee    description: {
7079ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main      en: 'A sample application to demonstrate how to use voicemail content provider APIs in Android 4.0.'
708acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee    }
709acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee  },
710acd6f5fcfae019f7bd1fdb47b42c7771049df645Debashish Chatterjee  {
71194be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'ui', 'widgets'],
712e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Wiktionary/index.html',
713e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
714e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Wiktionary'
715e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
716e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
717e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An example of creating interactive widgets for display on the Android home screen.'
718e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
719e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
720e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
72194be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'ui', 'widgets'],
722e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/WiktionarySimple/index.html',
723e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
724e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Wiktionary (Simplified)'
725e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
726e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
727e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A simple Android home screen widgets example.'
728e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
729e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
7303eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne  {
7319ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main    tags: ['sample', 'widgets', 'newfeature'],
73206d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    path: 'samples/WeatherListWidget/index.html',
73306d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    title: {
734d873e660c57eabb15a95acf71398c38929504284Scott Main      en: 'Weather List Widget'
73506d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    },
73606d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    description: {
73706d2fa705ba5a11f712187229238b0d41b446a52Winson Chung      en: 'A more complex collection-widget example which uses a ContentProvider as its data source.'
73806d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    }
73906d2fa705ba5a11f712187229238b0d41b446a52Winson Chung  },
74006d2fa705ba5a11f712187229238b0d41b446a52Winson Chung  {
7413f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'layout'],
7423eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    path: 'samples/XmlAdapters/index.html',
7433eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    title: {
7443eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne      en: 'XML Adapters'
7453eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    },
7463eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    description: {
7473eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne      en: 'Binding data to views using XML Adapters examples.'
7483eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    }
7493eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne  },
750af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath  {
751af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath    tags: ['sample', 'new', 'accessibility'],
752af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath    path: 'samples/TtsEngine/index.html',
753af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath    title: {
754af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath      en: 'Text To Speech Engine'
755af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath    },
756af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath    description: {
7579ed517da9be5a1090522e9fd7be217d1f1da6445Scott Main      en: 'An example Text To Speech engine written using the Android text to speech engine API in Android 4.0.'
758af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath    }
759af1ad3cc2d6152dfe62520a87bf5fa85337ca1abNarayan Kamath  },
760e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
761e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/////////////////
762e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/// TUTORIALS ///
763e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/////////////////
764e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
765e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
766e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial'],
767e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/hello-world.html',
768e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
769e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello World'
770e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
771e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
772e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Beginning basic application development with the Android SDK.'
773e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
774e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
775e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
776e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial', 'ui', 'layout'],
777e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/views/index.html',
778e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
779e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello Views'
780e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
781e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
782e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A walk-through of the various types of layouts and views available in the Android SDK.'
783e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
784e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
785e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
786e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial', 'ui', 'bestpractice'],
787e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/localization/index.html',
788e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
789e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello Localization'
790e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
791e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
792e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The basics of localizing your applications for multiple languages and locales.'
793e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
794e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
795e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
796e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial', 'data'],
797e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/notepad/index.html',
798e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
799e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Notepad Tutorial'
800e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
801e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
802e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A multi-part tutorial discussing intermediate-level concepts such as data access.'
803e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
804e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
805e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
8060664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    tags: ['tutorial', 'gl', 'new'],
8070664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    path: 'tutorials/opengl/opengl-es10.html',
8080664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    title: {
8090664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez      en: 'OpenGL ES 1.0'
8100664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    },
8110664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    description: {
8120664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez      en: 'The basics of implementing an application using the OpenGL ES 1.0 APIs.'
8130664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    }
8140664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez  },
8150664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez  {
8160664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    tags: ['tutorial', 'gl', 'new'],
8170664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    path: 'tutorials/opengl/opengl-es20.html',
8180664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    title: {
8190664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez      en: 'OpenGL ES 2.0'
8200664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    },
8210664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    description: {
8220664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez      en: 'The basics of implementing an application using the OpenGL ES 2.0 APIs.'
8230664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez    }
8240664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez  },
8250664a8f661e15991e20cab1c0daa41f5e21977abJoe Fernandez  {
826183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['tutorial', 'testing'],
827e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/testing/helloandroid_test.html',
828e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
829e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello Testing'
830e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
831e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
832e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A basic introduction to the Android testing framework.'
833e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
834e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
835e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
836183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['tutorial', 'testing'],
837e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/testing/activity_test.html',
838e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
839e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Activity Testing'
840e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
841e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
842e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A more advanced demonstration of the Android testing framework and tools.'
843e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
844e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  }
845e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik];
846