resources-data.js revision 6518f486a5b9cdcb48df3ca09732b51b6df249bf
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',
23e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'newfeature': 'New Features',
24e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'performance': 'Performance',
25e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'search': 'Search',
26e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'testing': 'Testing',
27e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'ui': 'User Interface',
2894be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    'web': 'Web Content',
2994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    'widgets': 'App Widgets'
30e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
31e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  misc: {
32e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'external': 'External',
33e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    'new': 'New'
34e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  }
35e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik};
36e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
37e577d72a3be20e589437271f0e5ca474fab38124Roman Nurikvar ANDROID_RESOURCES = [
38e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
39e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik//////////////////////////
40e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/// TECHNICAL ARTICLES ///
41e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik//////////////////////////
42e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
43e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
44e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
45e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/avoiding-memory-leaks.html',
46e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
47e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Avoiding Memory Leaks'
48e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
49e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
50e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
51e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
52e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
53e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
54e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'compatibility'],
55e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/backward-compatibility.html',
56e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
57e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Backward Compatibility'
58e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
59e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
60e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
61e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
62e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
63e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
64e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'intent'],
65e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/can-i-use-this-intent.html',
66e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
67e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Can I Use this Intent?'
68e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
69e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
70e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
71e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
72e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
73e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
74e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'input'],
75e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/creating-input-method.html',
76e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
77e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Creating an Input Method'
78e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
79e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
80e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
81e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
82e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
83e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
84e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'drawing', 'ui'],
85e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/drawable-mutations.html',
86e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
87e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Drawable Mutations'
88e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
89e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
90e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
91e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
92e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
93e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
94e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'bestpractice', 'ui'],
95e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/faster-screen-orientation-change.html',
96e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
97e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Faster Screen Orientation Change'
98e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
99e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
100e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
101e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
102e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
103e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
104e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'compatibility'],
105e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/future-proofing.html',
106e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
107e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Future-Proofing Your Apps'
108e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
109e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
110e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
111e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
112e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
113e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
114e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'input'],
115e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/gestures.html',
116e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
117e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Gestures'
118e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
119e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
120e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
121e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
122e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
123e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
124e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'gamedev', 'gl'],
125e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/glsurfaceview.html',
126e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
127e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Introducing GLSurfaceView'
128e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
129e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
130e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
131e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
132e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
133e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
134e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'layout'],
135e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-reuse.html',
136e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
137e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Creating Reusable UI Components'
138e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
139e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
140e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn how to combine multiple standard UI widgets into a single high-level component, which can be reused throughout your application.'
141e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
142e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
143e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
144e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'layout', 'ui', 'performance', 'bestpractice'],
145e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-efficiency.html',
146e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
147e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Creating Efficient Layouts'
148e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
149e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
150e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
151e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
152e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
153e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
154e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'layout', 'ui', 'performance', 'bestpractice'],
155e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-stubs.html',
156e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
157e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Using ViewStubs'
158e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
159e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
160e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
161e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
162e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
163e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
164e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'layout', 'ui', 'performance', 'bestpractice'],
165e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/layout-tricks-merge.html',
166e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
167e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Layout Tricks: Merging Layouts'
168e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
169e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
170e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
171e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
172e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
173e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
174e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'performance'],
175e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/listview-backgrounds.html',
176e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
177e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'ListView Backgrounds: An Optimization'
178e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
179e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
180e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
181e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
182e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
183e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
184a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article', 'ui'],
185e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/live-folders.html',
186e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
187e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Live Folders'
188e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
189e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
190e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
191e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
192e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
193e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
194a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article', 'ui'],
195e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/live-wallpapers.html',
196e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
197e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Live Wallpapers'
198e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
199e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
200e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
201e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
202e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
203e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
204e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'input'],
205e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/on-screen-inputs.html',
206e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
207e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Onscreen Input Methods'
208e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
209e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
210e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
211e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
212e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
213e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
214e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
215e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/painless-threading.html',
216e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
217e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Painless Threading'
218e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
219e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
220e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
221e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
222e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
223e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
224e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'search'],
225e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/qsb.html',
226e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
227e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Quick Search Box'
228e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
229e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
230e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
231e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
232e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
233e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
234e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui'],
235e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/touch-mode.html',
236e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
237e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Touch Mode'
238e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
239e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
240e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
241e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
242e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
243e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
244e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
245e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/track-mem.html',
246e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
247e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Tracking Memory Allocations'
248e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
249e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
250e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
251e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
252e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
253e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
254a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article'],
255e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/ui-1.5.html',
256e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
257e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'UI Framework Changes in Android 1.5'
258e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
259e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
260e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
261e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
262e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
263e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
264a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['article'],
265e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/ui-1.6.html',
266e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
267e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'UI Framework Changes in Android 1.6'
268e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
269e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
270e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
271e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
272e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
273e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
274e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'bestpractice'],
275e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/timed-ui-updates.html',
276e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
277e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Updating the UI from a Timer'
278e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
279e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
280e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Learn about how to use Handlers as a more efficient replacement for java.util.Timer on the Android platform.'
281e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
282e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
283e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
284e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'accessibility'],
285e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/tts.html',
286e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
287e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Using Text-to-Speech'
288e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
289e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
290e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
291e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
292e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
293e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
294e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'web'],
295e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/using-webviews.html',
296e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
297e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Using WebViews'
298e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
299e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
300e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
301e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
302e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
303e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
304e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui'],
305e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/wikinotes-linkify.html',
306e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
307e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'WikiNotes: Linkify your Text!'
308e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
309e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
310e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
311e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
312e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
313e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
314e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'intent'],
315e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/wikinotes-intents.html',
316e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
317e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'WikiNotes: Routing Intents'
318e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
319e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
320e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
321e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
322e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
323e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
324e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'ui', 'performance'],
325e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/window-bg-speed.html',
326e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
327e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Window Backgrounds & UI Speed'
328e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
329e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
330e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
331e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
332e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
333e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
334e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['article', 'performance', 'bestpractice'],
335e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'articles/zipalign.html',
336e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
337e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Zipalign: an Easy Optimization'
338e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
339e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
340e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
341e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
342e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
343e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
344e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik///////////////////
345e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/// SAMPLE CODE ///
346e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik///////////////////
3473f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly
3483f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
34994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'new'],
3503f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/AccelerometerPlay/index.html',
3513f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
3523f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Accelerometer Play'
3533f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
3543f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
35594be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman 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.'
3563f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
3573f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
3583f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
35994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'new', 'accessibility'],
3603f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/AccessibilityService/index.html',
3613f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
3623f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Accessibility Service'
3633f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
3643f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
3653f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Illustrates an accessibility service that provides custom feedback for the Clock application which comes by default with Android devices'
3663f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
3673f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
368e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
369e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'layout', 'ui'],
370e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/ApiDemos/index.html',
371e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
372e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'API Demos'
373e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
374e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
375e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A variety of small applications that demonstrate an extensive collection of framework topics.'
376e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
377e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
378e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
3793f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'data', 'newfeature', 'accountsync'],
380e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/BackupRestore/index.html',
381e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
382e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Backup and Restore'
383e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
384e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
385e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
386e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
387e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
388e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
389e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'communication'],
390e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/BluetoothChat/index.html',
391e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
392e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Bluetooth Chat'
393e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
394e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
395e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An application for two-way text messaging over Bluetooth.'
396e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
397e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
398e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
399e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'accountsync'],
400e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/BusinessCard/index.html',
401e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
402e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'BusinessCard'
403e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
404e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
405e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
406e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
407e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
408e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
409e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'accountsync'],
410e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/ContactManager/index.html',
411e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
412e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Contact Manager'
413e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
414e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
415e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
416e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
417e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
418e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
4193f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'ui'],
4203f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/CubeLiveWallpaper/index.html',
4213f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
4223f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Cube Live Wallpaper'
4233f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
4243f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
4253f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert 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.'
4263f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
4273f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
4283f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
429e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample'],
430e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Home/index.html',
431e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
432e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Home'
433e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
434e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
435e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A home screen replacement application.'
436d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    }
437d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas  },
438d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas  {
439a35f65692d9f97264dc939d5749db86845141810Roman Nurik    tags: ['sample', 'new', 'newfeature', 'ui'],
440a35f65692d9f97264dc939d5749db86845141810Roman Nurik    path: 'samples/HoneycombGallery/index.html',
441d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    title: {
442d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas      en: 'Honeycomb Gallery'
443d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    },
444d84725401d7b79b79020793d06427cad43fa95b1Alexander Lucas    description: {
445a35f65692d9f97264dc939d5749db86845141810Roman Nurik      en: 'An image gallery application using APIs that are new in Android 3.0 (a.k.a. Honeycomb).'
446e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
447e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
448e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
449e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'gamedev', 'media'],
450e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/JetBoy/index.html',
451e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
452e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'JetBoy'
453e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
454e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
455e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A game that demonstrates the SONiVOX JET interactive music technology, with <code><a href="/reference/android/media/JetPlayer.html">JetPlayer</a></code>.'
456e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
457e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
458e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
459e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'gamedev', 'media'],
460e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/LunarLander/index.html',
461e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
462e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Lunar Lander'
463e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
464e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
465e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A classic Lunar Lander game.'
466e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
467e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
468e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
469e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'ui', 'bestpractice', 'layout'],
470e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/MultiResolution/index.html',
471e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
472e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Multiple Resolutions'
473e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
474e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
475e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A sample application that shows how to use resource directory qualifiers to provide different resources for different screen configurations.'
476e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
477e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
478e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
479e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'data'],
4803f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/NFCDemo/index.html',
4813f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
4823f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'NFC Demo'
4833f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
4843f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
4853f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'An application for reading NFC Forum Type 2 Tags using the NFC APIs'
4863f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
4873f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
4883f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
4893f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'data'],
490e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/NotePad/index.html',
491e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
492e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Note Pad'
493e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
494e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
495e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An application for saving notes. Similar (but not identical) to the <a href="/resources/tutorials/notepad/index.html">Notepad tutorial</a>.'
496e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
497e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
498e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
4996518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    tags: ['sample', 'new'],
5006518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    path: 'samples/Renderscript/index.html',
5016518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    title: {
5026518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly      en: 'Renderscript'
5036518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    },
5046518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    description: {
5056518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly      en: 'A set of samples that demonstrate how to use various features of the Renderscript APIs.'
5066518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly    }
5076518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly  },
5086518f486a5b9cdcb48df3ca09732b51b6df249bfRobert Ly  {
509e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'accountsync'],
510e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/SampleSyncAdapter/index.html',
511e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
512e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'SampleSyncAdapter'
513e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
514e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
515e577d72a3be20e589437271f0e5ca474fab38124Roman 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).'
516e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
517e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
518e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
519183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'ui', 'search'],
520e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/SearchableDictionary/index.html',
521e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
522e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Searchable Dictionary v2'
523e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
524e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
525e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A sample application that demonstrates Android\'s search framework, including how to provide search suggestions for Quick Search Box.'
526e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
527e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
528e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
5293f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample'],
5303f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/SipDemo/index.html',
5313f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
5323f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'SIP Demo'
5333f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
5343f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
5353f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'A demo application highlighting how to make internet-based calls with the SIP API.'
5363f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
5373f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
5383f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
539e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['sample', 'layout', 'ui'],
540e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Snake/index.html',
541e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
542e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Snake'
543e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
544e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
545e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An implementation of the classic game "Snake."'
546e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
547e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
548e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
5493f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'input'],
5503f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    path: 'samples/SoftKeyboard/index.html',
5513f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    title: {
5523f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'Soft Keyboard'
5533f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    },
5543f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    description: {
5553f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly      en: 'An example of writing an input method for a software keyboard.'
5563f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    }
5573f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  },
5583f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly  {
559183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'testing'],
560e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Spinner/index.html',
561e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
562e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Spinner'
563e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
564e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
565e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A simple application that serves as an application under test for the SpinnerTest example.'
566e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
567e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
568e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
569183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'testing'],
570e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/SpinnerTest/index.html',
571e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
572e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'SpinnerTest'
573e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
574e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
575e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The test application for the Activity Testing tutorial. It tests the Spinner example application.'
576e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
577e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
578e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
57994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'new', 'newfeature', 'widgets'],
580fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    path: 'samples/StackWidget/index.html',
581fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    title: {
582d873e660c57eabb15a95acf71398c38929504284Scott Main      en: 'StackView Widget'
583fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    },
584fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    description: {
585fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen      en: 'Demonstrates how to create a simple collection widget containing a StackView.'
586fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen    }
587fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen  },
588fca67c5525bf26ac9eadb03476fb846c167387f4Adam Cohen  {
589183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'newfeature'],
590e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/TicTacToeLib/index.html',
591e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
592e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'TicTacToeLib'
593e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
594e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
595e577d72a3be20e589437271f0e5ca474fab38124Roman 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.'
596e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
597e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
598e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
599183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['sample', 'newfeature',],
600e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/TicTacToeMain/index.html',
601e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
602e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'TicTacToeMain'
603e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
604e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
605e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Demonstrates how an application can make use of shared code and resources stored in an Android library project.'
606e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
607e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
608e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
60994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'ui', 'widgets'],
610e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/Wiktionary/index.html',
611e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
612e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Wiktionary'
613e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
614e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
615e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'An example of creating interactive widgets for display on the Android home screen.'
616e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
617e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
618e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
61994be4a5e1ad833d7e5d0dbed29b806ba8fd5409eRoman Nurik    tags: ['sample', 'ui', 'widgets'],
620e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'samples/WiktionarySimple/index.html',
621e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
622e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Wiktionary (Simplified)'
623e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
624e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
625e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A simple Android home screen widgets example.'
626e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
627e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
6283eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne  {
62906d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    tags: ['sample', 'widgets', 'newfeature', 'new'],
63006d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    path: 'samples/WeatherListWidget/index.html',
63106d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    title: {
632d873e660c57eabb15a95acf71398c38929504284Scott Main      en: 'Weather List Widget'
63306d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    },
63406d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    description: {
63506d2fa705ba5a11f712187229238b0d41b446a52Winson Chung      en: 'A more complex collection-widget example which uses a ContentProvider as its data source.'
63606d2fa705ba5a11f712187229238b0d41b446a52Winson Chung    }
63706d2fa705ba5a11f712187229238b0d41b446a52Winson Chung  },
63806d2fa705ba5a11f712187229238b0d41b446a52Winson Chung  {
6393f9b6445cb9c384a428364a1cca85ca3c172fbe6Robert Ly    tags: ['sample', 'layout'],
6403eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    path: 'samples/XmlAdapters/index.html',
6413eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    title: {
6423eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne      en: 'XML Adapters'
6433eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    },
6443eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    description: {
6453eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne      en: 'Binding data to views using XML Adapters examples.'
6463eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne    }
6473eb9b66deb18888d7f52ed901abf342506aa3db7Gilles Debunne  },
648e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
649e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/////////////////
650e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/// TUTORIALS ///
651e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik/////////////////
652e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik
653e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
654e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial'],
655e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/hello-world.html',
656e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
657e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello World'
658e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
659e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
660e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Beginning basic application development with the Android SDK.'
661e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
662e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
663e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
664e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial', 'ui', 'layout'],
665e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/views/index.html',
666e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
667e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello Views'
668e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
669e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
670e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A walk-through of the various types of layouts and views available in the Android SDK.'
671e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
672e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
673e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
674e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial', 'ui', 'bestpractice'],
675e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/localization/index.html',
676e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
677e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello Localization'
678e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
679e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
680e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'The basics of localizing your applications for multiple languages and locales.'
681e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
682e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
683e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
684e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    tags: ['tutorial', 'data'],
685e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/notepad/index.html',
686e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
687e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Notepad Tutorial'
688e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
689e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
690e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A multi-part tutorial discussing intermediate-level concepts such as data access.'
691e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
692e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
693e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
694183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['tutorial', 'testing'],
695e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/testing/helloandroid_test.html',
696e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
697e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Hello Testing'
698e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
699e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
700e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A basic introduction to the Android testing framework.'
701e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
702e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  },
703e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  {
704183ecbc229d70e30effe7e8e7173ff9228728316Scott Main    tags: ['tutorial', 'testing'],
705e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    path: 'tutorials/testing/activity_test.html',
706e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    title: {
707e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'Activity Testing'
708e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    },
709e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    description: {
710e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik      en: 'A more advanced demonstration of the Android testing framework and tools.'
711e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik    }
712e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik  }
713e577d72a3be20e589437271f0e5ca474fab38124Roman Nurik];
714