Lines Matching full:description
15 category.service.description=Obtain handles for system-level services
36 snippet.service.systemService00.description=Obtain a handle to the manager responsible for interacting with running activities
37 snippet.service.systemService01.description=Obtain a handle to the manager responsible for providing access to the system alarm services
38 snippet.service.systemService02.description=Obtain a handle to the manager responsible for handling volume, ringer modes, audio routing and so on
39 snippet.service.systemService03.description=Obtain a handle to the manager responsible for accessing and modifying the contents of the global clipboard
40 snippet.service.systemService04.description=Obtain a handle to the manager responsible for answering queries about the state of network connectivity
41 snippet.service.systemService05.description=Obtain a handle to the manager responsible for handling input methods
42 snippet.service.systemService06.description=Obtain a handle to the manager responsible for locking and unlocking the keyboard
43 snippet.service.systemService07.description=Obtain a handle to the manager responsible for instantiating layout XML files into their corresponding View objects
44 snippet.service.systemService08.description=Obtain a handle to the manager responsible for providing access to the system location services (geographical location)
45 snippet.service.systemService09.description=Obtain a handle to the manager responsible for informing the user about events that happen in the background
46 snippet.service.systemService10.description=Obtain a handle to the manager responsible for controlling power management, including "wake locks"
47 snippet.service.systemService11.description=Obtain a handle to the manager responsible for providing access to the system search services
48 snippet.service.systemService12.description=Obtain a handle to the manager responsible for accessing sensors, such as those that provide information about device orientation and inclination
49 snippet.service.systemService13.description=Obtain a handle to the manager responsible for accessing information about the telephony services on the device
50 snippet.service.systemService14.description=Obtain a handle to the manager responsible for interacting with the vibration hardware
51 snippet.service.systemService15.description=Obtain a handle to the manager responsible for accessing wallpapers
52 snippet.service.systemService16.description=Obtain a handle to the manager responsible for managing all aspects of Wi-Fi connectivity
53 snippet.service.systemService17.description=Obtain a handle to the manager responsible for granting apps access to the system window manager
61 category.general.description=General snippets to use while building your application
71 snippet.general.sendSMS.description=Construct and send an SMS message
72 snippet.general.toast.description=Display a "toast" message to the user
73 snippet.general.statusBar.description=Display a message in the status bar
74 snippet.general.vibrateTime.description=Trigger the vibration hardware for a limited time
75 snippet.general.vibratePattern.description=Trigger the vibration hardware to follow an on/off pattern
76 snippet.general.strictMode.description=Detect operations executed in the UI that are not recommended and bring them to the user's attention
84 category.preferences.description=Snippets used to store and retrieve application preferences as key-value pairs.
87 snippet.preferences.loadSharedPreference.description=Retrieve a preference value from a named preferences file.
90 snippet.preferences.loadSharedPreferenceFromPreferenceManager.description=Retrieve a shared preference from Preference Manager
93 snippet.preferences.writeSharedPreference.description=Write a preference value to a named preferences file.
96 snippet.preferences.writeSharedPreferenceFromPreferenceManager.description=Write a preference value in the one preferences file used by your Activity.
103 category.database.description=Database related snippets which use SQLite
114 snippet.database.createOrOpenDb.description=Open or create a new SQLite database
115 snippet.database.deleteDb.description=Delete a SQLite database
116 snippet.database.createTbl.description=Create a new table within a database
117 snippet.database.deleteTbl.description=Delete a table from a database
118 snippet.database.insertEntry.description=Insert a table row
119 snippet.database.updateEntry.description=Update a table row
120 snippet.database.deleteEntry.description=Delete a table row
121 snippet.database.runQuery.description=Execute a SQL query
129 category.menus.description=Snippets for working with menu and action bar
141 snippet.menus.handleItems.description=Example of how to add items to an options menu and handle menu item selection. Add this to your activity.
142 snippet.menus.disableItem.description=Disable a menu item, making it unusable
143 snippet.menus.subItem.description=Add a sub-menu to a menu item
144 snippet.menus.declareMenuXML.description=A menu definition, in XML. Save this in res/menu/ and name it <nameYouWantToReferToThisMenu>.xml
145 snippet.menus.inflateMenu.description=Inflate an XML menu definition for use in an activity.
146 snippet.menus.showActionBar.description=Programmatically show the action bar
147 snippet.menus.hideActionBar.description=Programmatically hide the action bar
148 snippet.menus.manage.actionbar.description=Put the action bar in tab mode for navigation
149 snippet.menus.toggle.actionbar.description=Show the action bar if it is hidden, and hide it otherwise.
157 category.screen.description=Snippets related to screen properties
163 snippet.screen.fullscreen.description=Expand the current activity so it fits the device's screen
164 snippet.screen.size.description=Retrieve the size of the device's screen
165 snippet.screen.orientation.description=Retrieve the current screen orientation
174 category.log.description=Snippets for logging messages from an Android application
181 snippet.log.error.description=Log an ERROR message
182 snippet.log.warning.description=Log a WARNING message
183 snippet.log.info.description=Log an INFO message
184 snippet.log.debug.description=Log a DEBUG message
192 category.gps.description=Snippets related to GPS location and status
200 snippet.gps.currentCoordinates.description=Get the current location of the device
201 snippet.gps.lastCoordinates.description=Get the last known location of the device
202 snippet.gps.distance.description=Calculate the distance between two locations
203 snippet.gps.listenerChanges.description=Register a listener for changes in GPS status
204 snippet.gps.listenerProximity.description=Register a listener to be notified when the device is near a given point
212 category.media.description=Snippets to play/record media files
219 snippet.media.playAudioVideoRaw.description=Play a media file that is located in a folder inside the application
220 snippet.media.playAudioVideoFile.description=Play a media file that is located in the local file system or on the Internet
221 snippet.media.startRecordingAudio.description=Record audio and save to a file
222 snippet.media.stopRecording.description=Stop the audio recording
230 category.motorolaapi.description=Snippets for Motorola APIs
235 snippet.motorolaapi.ffcamera.description=Example of how to obtain the camera object that represents the front-facing camera
236 snippet.motorolaapi.hdmi.description=Receive notification of HDMI status changes
244 category.resources.description=Snippets to access resources and assets
250 snippet.resources.listAssets.description=Create a list of assets within your application's package
251 snippet.resources.readFile.description=Retrieve an InputStream for a named asset
252 snippet.resources.readXmlFile.description=Retrieve an XmlResourceParser for a compiled XML file
260 category.dialogs.description=Snippets to display dialogs
270 snippet.dialogs.alert.description=Display a simple alert dialog with a Yes/No question
271 snippet.dialogs.progressDialog.description=Display a simple progress dialog
272 snippet.dialogs.progressBar.description=Display a progress bar
273 snippet.dialogs.datePicker.description=Construct and display a dialog that allows the user to select a date
274 snippet.dialogs.timePicker.description=Construct and display a dialog that allows the user to select a time
275 snippet.dialogs.custom.description=Display a dialog with custom content. This dialog must have a title.
276 snippet.dialogs.customAlert.description=Display an alert dialog with custom content. This dialog doesn't have to have a title.
286 category.web.description=Samples of how to access web servers from your Android applications
306 snippet.web.post.description=Executes a post request using the Apache HTTPClient
308 snippet.web.get.description=Executes a GET request using the Apache HTTPClient
310 snippet.web.json.description=Retrieve JSON objects from a RESTful web server response. See the "Query for a REST response" snippet to get the response.
312 snippet.web.email.description=Send an email message where the subject, body, and destination are all text strings
314 snippet.web.urlconnection.description=Open a connection to a given URL and get the response as a String
316 snippet.web.soap.description=Example of accessing and parsing SOAP from a web server using the KSoap project
317 snippet.web.rest.description=Query for a REST response from a web server using a GET request
331 category.sensors.description=Use of sensors, such as accelerometer
341 snnipet.sensor.detect.description=Determine if your device supports a particular sensor
343 snnipet.sensor.getorientation.description=Read data from an orientation sensor
357 category.sql.description=Some SQL samples that you can use to mount your queries
381 snippet.sql.update.description=SQL query for updating a table
383 snippet.sql.inner.description=SQL query for selecting all students from a table students that are also present in the table math_class
385 snippet.sql.left.description=SQL query for selecting all students from a table students that has grade bigger than 5 in the table math_class
387 snippet.sql.count.description=How many different cities do our students come from?
389 snippet.sql.insert.description
391 snippet.sql.createfromtable.description=Creates a table composed of rock songs from the "songs" table
393 snippet.sql.drop.description=Deletes a named table
395 snippet.sql.delete.description=Deletes from a table all songs that have a rating less than 5
397 snippet.sql.create.description=Creates a table to store songs
411 category.bluetooth.description=Snippets to access and use the device bluetooth
431 snippet.bluetooth.check.description=Verify that the device supports Bluetooth by trying to get the Bluetooth adapter
433 snippet.bluetooth.enable.description=If Bluetooth is supported, enables it such that you receive a callback when it is enabled
435 snippet.bluetooth.getpaired.description=Gets the set of devices paired with this one
437 snippet.bluetooth.discover.description=Registers intents for remote device discovery. Also includes a BroadcastReceiver that is notified as each device is found and when the discovery process completes.
438 snippet.bluetooth.discoverable.description=If this device is not discoverable, make it so
440 snippet.bluetooth.incoming.description=Code (likely to run on a thread) that creates a listening, secure RFCOMM Bluetooth socket, retrieves incoming connections, and opens input and output streams connected to the socket.
442 snippet.bluetooth.connect.description=Connect to a device
452 category.localization.description=Snippets to work with localized resources
460 snippet.localization.string.description=Get a localized string resource
461 snippet.localization.drawable.description=Get a localized drawable resource
462 snippet.localization.curLocale.description=Get the current locale from Java
463 snippet.localization.resLocale.description=Get the current locale for your application's package
464 snippet.localization.dynamicMsg.description=Create a formatted message containing the full language name in the default locale
470 category.ui.description=Code for handling UIs in an efficient way
481 snippet.ui.gestures.description=Make your touch gestures work the same way, independent of the device pixel density.
482 snippet.ui.sizes.description=Adjust the size of a widget (a button, in this example) when the enclosing view changes its size.
483 snippet.ui.background.description=Resize a bitmap to the size of a view. Useful for creating background images.
484 snippet.ui.widget.description=Handle user interaction with a widget (a button, in this example).
485 snippet.ui.moveout.description=Use AsyncTask to perform background operations, thus avoiding UI freezes and improving application responsiveness. This helps with Honeycomb (Android 3.0), which enforces the rule "don't do network access in the UI thread" (throws exception).
486 snippet.ui.backgroundtaskwithnotification.description=Use AsyncTask to perform a background operation while the user is notified via the status bar.
487 snippet.ui.hide.statusbar.description=Hides status bar
488 snippet.ui.visible.statusbar.description=Shows status bar (if it was hidden)
494 intents.ui.description=Intent templates to call Activities, Broadcast Receivers, and Services
497 intents.start.activity.explicitly.description=Starts Activity by calling the class (not using id)
500 intents.start.activity.implicitly.description=Starts Activity by using the id, action and category
503 intents.start.activity.for.result.description=Starts Activity and waits for a result
506 intents.send.broadcast.description=Sends message for broadcast receivers
509 intents.start.service.description=Binds and starts service
516 fragments.ui.description=Code to manipulate fragments
519 fragments.replace.transaction.description=Replace one fragment by a new one using a animation
522 fragments.add.transaction.description=Adds one fragment programmatically
528 category.facerecog.description=Basic code for finding faces in a Bitmap
532 snippet.facerecog.description=Find faces in Bitmap and how much confidence can you take on them.