blob: 6d6686b3cf3f7708752c5db2e1d285b7df3ef124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
|
toc:
- title: Introduction
path: /guide/index.html
section:
- title: App Fundamentals
path: /guide/components/fundamentals.html
- title: Device Compatibility
path: /guide/practices/compatibility.html
- title: System Permissions
path: /guide/topics/security/permissions.html
- title: App Components
path: /guide/components/index.html
section:
- title: Intents and Intent Filters
path: /guide/components/intents-filters.html
section:
- title: Common Intents
path: /guide/components/intents-common.html
- title: Activities
path: /guide/components/activities.html
section:
- title: Fragments
path: /guide/components/fragments.html
- title: Loaders
path: /guide/components/loaders.html
- title: Tasks and Back Stack
path: /guide/components/tasks-and-back-stack.html
- title: Overview Screen
path: /guide/components/recents.html
- title: Services
path: /guide/components/services.html
section:
- title: Bound Services
path: /guide/components/bound-services.html
- title: AIDL
path: /guide/components/aidl.html
- title: Content Providers
path: /guide/topics/providers/content-providers.html
section:
- title: Content Provider Basics
path: /guide/topics/providers/content-provider-basics.html
- title: Creating a Content Provider
path: /guide/topics/providers/content-provider-creating.html
- title: Calendar Provider
path: /guide/topics/providers/calendar-provider.html
- title: Contacts Provider
path: /guide/topics/providers/contacts-provider.html
- title: Storage Access Framework
path: /guide/topics/providers/document-provider.html
- title: App Widgets
path: /guide/topics/appwidgets/index.html
section:
- title: App Widget Host
path: /guide/topics/appwidgets/host.html
- title: Processes and Threads
path: /guide/components/processes-and-threads.html
- title: App Resources
path: /guide/topics/resources/index.html
section:
- title: Overview
path: /guide/topics/resources/overview.html
- title: Providing Resources
path: /guide/topics/resources/providing-resources.html
- title: Accessing Resources
path: /guide/topics/resources/accessing-resources.html
- title: Handling Runtime Changes
path: /guide/topics/resources/runtime-changes.html
- title: Localization
path: /guide/topics/resources/localization.html
- title: Resource Types
path: /guide/topics/resources/available-resources.html
section:
- title: Animation
path: /guide/topics/resources/animation-resource.html
- title: Color State List
path: /guide/topics/resources/color-list-resource.html
- title: Drawable
path: /guide/topics/resources/drawable-resource.html
- title: Layout
path: /guide/topics/resources/layout-resource.html
- title: Menu
path: /guide/topics/resources/menu-resource.html
- title: String
path: /guide/topics/resources/string-resource.html
- title: Style
path: /guide/topics/resources/style-resource.html
- title: More Types
path: /guide/topics/resources/more-resources.html
- title: App Manifest
path: /guide/topics/manifest/manifest-intro.html
section:
- title: <action>
path: /guide/topics/manifest/action-element.html
- title: <activity>
path: /guide/topics/manifest/activity-element.html
- title: <activity-alias>
path: /guide/topics/manifest/activity-alias-element.html
- title: <application>
path: /guide/topics/manifest/application-element.html
- title: <category>
path: /guide/topics/manifest/category-element.html
- title: <compatible-screens>
path: /guide/topics/manifest/compatible-screens-element.html
- title: <data>
path: /guide/topics/manifest/data-element.html
- title: <grant-uri-permission>
path: /guide/topics/manifest/grant-uri-permission-element.html
- title: <instrumentation>
path: /guide/topics/manifest/instrumentation-element.html
- title: <intent-filter>
path: /guide/topics/manifest/intent-filter-element.html
- title: <manifest>
path: /guide/topics/manifest/manifest-element.html
- title: <meta-data>
path: /guide/topics/manifest/meta-data-element.html
- title: <path-permission>
path: /guide/topics/manifest/path-permission-element.html
- title: <permission>
path: /guide/topics/manifest/permission-element.html
- title: <permission-group>
path: /guide/topics/manifest/permission-group-element.html
- title: <permission-tree>
path: /guide/topics/manifest/permission-tree-element.html
- title: <provider>
path: /guide/topics/manifest/provider-element.html
- title: <receiver>
path: /guide/topics/manifest/receiver-element.html
- title: <service>
path: /guide/topics/manifest/service-element.html
- title: <supports-gl-texture>
path: /guide/topics/manifest/supports-gl-texture-element.html
- title: <supports-screens>
path: /guide/topics/manifest/supports-screens-element.html
- title: <uses-configuration>
path: /guide/topics/manifest/uses-configuration-element.html
- title: <uses-feature>
path: /guide/topics/manifest/uses-feature-element.html
- title: <uses-library>
path: /guide/topics/manifest/uses-library-element.html
- title: <uses-permission>
path: /guide/topics/manifest/uses-permission-element.html
- title: <uses-permission-sdk-23>
path: /guide/topics/manifest/uses-permission-sdk-23-element.html
- title: <uses-sdk>
path: /guide/topics/manifest/uses-sdk-element.html
- title: User Interface
path: /guide/topics/ui/index.html
section:
- title: Overview
path: /guide/topics/ui/overview.html
- title: Layouts
path: /guide/topics/ui/declaring-layout.html
section:
- title: Linear Layout
path: /guide/topics/ui/layout/linear.html
- title: Relative Layout
path: /guide/topics/ui/layout/relative.html
- title: List View
path: /guide/topics/ui/layout/listview.html
- title: Grid View
path: /guide/topics/ui/layout/gridview.html
- title: Input Controls
path: /guide/topics/ui/controls.html
section:
- title: Buttons
path: /guide/topics/ui/controls/button.html
- title: Text Fields
path: /guide/topics/ui/controls/text.html
- title: Checkboxes
path: /guide/topics/ui/controls/checkbox.html
- title: Radio Buttons
path: /guide/topics/ui/controls/radiobutton.html
- title: Toggle Buttons
path: /guide/topics/ui/controls/togglebutton.html
- title: Spinners
path: /guide/topics/ui/controls/spinner.html
- title: Pickers
path: /guide/topics/ui/controls/pickers.html
- title: Input Events
path: /guide/topics/ui/ui-events.html
- title: Menus
path: /guide/topics/ui/menus.html
- title: Settings
path: /guide/topics/ui/settings.html
- title: Dialogs
path: /guide/topics/ui/dialogs.html
- title: Notifications
path: /guide/topics/ui/notifiers/notifications.html
- title: Toasts
path: /guide/topics/ui/notifiers/toasts.html
- title: Search
path: /guide/topics/search/index.html
section:
- title: Creating a Search Interface
path: /guide/topics/search/search-dialog.html
- title: Adding Recent Query Suggestions
path: /guide/topics/search/adding-recent-query-suggestions.html
- title: Adding Custom Suggestions
path: /guide/topics/search/adding-custom-suggestions.html
- title: Searchable Configuration
path: /guide/topics/search/searchable-config.html
- title: Drag and Drop
path: /guide/topics/ui/drag-drop.html
- title: Accessibility
path: /guide/topics/ui/accessibility/index.html
section:
- title: Making Applications Accessible
path: /guide/topics/ui/accessibility/apps.html
- title: Accessibility Developer Checklist
path: /guide/topics/ui/accessibility/checklist.html
- title: Building Accessibility Services
path: /guide/topics/ui/accessibility/services.html
- title: Styles and Themes
path: /guide/topics/ui/themes.html
- title: Custom Components
path: /guide/topics/ui/custom-components.html
- title: Animation and Graphics
path: /guide/topics/graphics/index.html
section:
- title: Overview
path: /guide/topics/graphics/overview.html
- title: Property Animation
path: /guide/topics/graphics/prop-animation.html
- title: View Animation
path: /guide/topics/graphics/view-animation.html
- title: Drawable Animation
path: /guide/topics/graphics/drawable-animation.html
- title: Canvas and Drawables
path: /guide/topics/graphics/2d-graphics.html
- title: OpenGL ES
path: /guide/topics/graphics/opengl.html
- title: Hardware Acceleration
path: /guide/topics/graphics/hardware-accel.html
- title: Computation
path: /guide/topics/renderscript/index.html
section:
- title: RenderScript
path: /guide/topics/renderscript/compute.html
- title: Advanced RenderScript
path: /guide/topics/renderscript/advanced.html
- title: Runtime API Reference
path: /guide/topics/renderscript/reference/overview.html
section:
- title: Numerical Types
path: /guide/topics/renderscript/reference/rs_value_types.html
- title: Object Types
path: /guide/topics/renderscript/reference/rs_object_types.html
- title: Conversion Functions
path: /guide/topics/renderscript/reference/rs_convert.html
- title: Mathematical Constants and Functions
path: /guide/topics/renderscript/reference/rs_math.html
- title: Vector Math Functions
path: /guide/topics/renderscript/reference/rs_vector_math.html
- title: Matrix Functions
path: /guide/topics/renderscript/reference/rs_matrix.html
- title: Quaternion Functions
path: /guide/topics/renderscript/reference/rs_quaternion.html
- title: Atomic Update Functions
path: /guide/topics/renderscript/reference/rs_atomic.html
- title: Time Functions and Types
path: /guide/topics/renderscript/reference/rs_time.html
- title: Allocation Data Access Functions
path: /guide/topics/renderscript/reference/rs_allocation_data.html
- title: Object Characteristics Functions
path: /guide/topics/renderscript/reference/rs_object_info.html
- title: Kernel Invocation Functions and Types
path: /guide/topics/renderscript/reference/rs_for_each.html
- title: Input/Output Functions
path: /guide/topics/renderscript/reference/rs_io.html
- title: Debugging Functions
path: /guide/topics/renderscript/reference/rs_debug.html
- title: Graphics Functions and Types
path: /guide/topics/renderscript/reference/rs_graphics.html
- title: Index
path: /guide/topics/renderscript/reference/index.html
- title: Media and Camera
path: /guide/topics/media/index.html
section:
- title: Media Playback
path: /guide/topics/media/mediaplayer.html
- title: Media Router
path: /guide/topics/media/mediarouter.html
- title: Media Route Provider
path: /guide/topics/media/mediarouteprovider.html
- title: ExoPlayer
path: /guide/topics/media/exoplayer.html
- title: Supported Media Formats
path: /guide/appendix/media-formats.html
- title: Audio Capture
path: /guide/topics/media/audio-capture.html
- title: JetPlayer
path: /guide/topics/media/jetplayer.html
- title: Camera
path: /guide/topics/media/camera.html
- title: Location and Sensors
path: /guide/topics/sensors/index.html
section:
- title: Location and Maps
path: /guide/topics/location/index.html
- title: Location Strategies
path: /guide/topics/location/strategies.html
- title: Sensors Overview
path: /guide/topics/sensors/sensors_overview.html
- title: Motion Sensors
path: /guide/topics/sensors/sensors_motion.html
- title: Position Sensors
path: /guide/topics/sensors/sensors_position.html
- title: Environment Sensors
path: /guide/topics/sensors/sensors_environment.html
- title: Connectivity
path: /guide/topics/connectivity/index.html
section:
- title: Bluetooth
path: /guide/topics/connectivity/bluetooth.html
section:
- title: Bluetooth Low Energy
path: /guide/topics/connectivity/bluetooth-le.html
- title: NFC
path: /guide/topics/connectivity/nfc/index.html
section:
- title: NFC Basics
path: /guide/topics/connectivity/nfc/nfc.html
- title: Advanced NFC
path: /guide/topics/connectivity/nfc/advanced-nfc.html
- title: Host-based Card Emulation
path: /guide/topics/connectivity/nfc/hce.html
- title: Wi-Fi P2P
path: /guide/topics/connectivity/wifip2p.html
- title: USB
path: /guide/topics/connectivity/usb/index.html
section:
- title: Accessory
path: /guide/topics/connectivity/usb/accessory.html
- title: Host
path: /guide/topics/connectivity/usb/host.html
- title: SIP
path: /guide/topics/connectivity/sip.html
- title: Text and Input
path: /guide/topics/text/index.html
section:
- title: Copy and Paste
path: /guide/topics/text/copy-paste.html
- title: Creating an IME
path: /guide/topics/text/creating-input-method.html
- title: Spelling Checker
path: /guide/topics/text/spell-checker-framework.html
- title: Data Storage
path: /guide/topics/data/index.html
section:
- title: Storage Options
path: /guide/topics/data/data-storage.html
- title: Data Backup
path: /guide/topics/data/backup.html
- title: App Install Location
path: /guide/topics/data/install-location.html
- title: Libraries
path: /topic/libraries/index.html
section:
- include: /topic/libraries/_book.yaml
- title: Administration
path: /guide/topics/admin/index.html
section:
- title: Device Policies
path: /guide/topics/admin/device-admin.html
- title: Web Apps
path: /guide/webapps/index.html
section:
- title: Supporting Different Screens in Web Apps
path: /guide/webapps/targeting.html
- title: Building Web Apps in WebView
path: /guide/webapps/webview.html
- title: Migrating to WebView in Android 4.4
path: /guide/webapps/migrating.html
- title: Debugging Web Apps
path: /guide/webapps/debugging.html
- title: Best Practices for Web Apps
path: /guide/webapps/best-practices.html
- title: Best Practices
path: /guide/practices/index.html
path_attributes:
- name: de-lang
value: Bewährte Verfahren
- name: es-lang
value: Prácticas recomendadas
- name: fr-lang
value: Meilleures pratiques
- name: it-lang
value: Best practice
- name: ja-lang
value: ベスト プラクティス
- name: zh-cn-lang
value: 最佳实践
- name: zh-tw-lang
value: 最佳實務
section:
- title: Supporting Multiple Screens
path: /guide/practices/screens_support.html
section:
- title: Distributing to Specific Screens
path: /guide/practices/screens-distribution.html
- title: Screen Compatibility Mode
path: /guide/practices/screen-compat-mode.html
- title: Supporting Tablets and Handsets
path: /guide/practices/tablets-and-handsets.html
- title: Verifying App Behavior on ART
path: /guide/practices/verifying-apps-art.html
|