platforms and products Online Quiz - 25
Description: platforms and products Online Quiz - 25 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: platforms and products |
Intent is an action with its associated data URI. You can use intents to invoke internal or external components from your application.
Linkify is a helper class that automatically creates hyperlinks within Text View (and Text View-derived) classes
Pending Intent is commonly used to package an Intent that will be fired in response to a future event, such as a widget View being clicked or a Notification being selected from the notification panel.
In addition to its primary attributes of action and data URI, intent can include additional attributes called extras. An extra can provide more information to the component that receives the intent. It is accessed using -
During start-up, Android looks for activities whose category (also known as a tag) is marked as CATEGORY_LAUNCHER. It then picks up these activity names and icons and places them on the home screen to launch.
The SQLite3 has been implemented as a ______________ that's included as part of the Android software stack
In SQLite3 database, Files (such as bitmaps or audio files) are usually stored within database tables.
What is the use of –e option in following adb command – adb –e shell
________ objects are used to insert new rows into database tables
In SQLite database, there is a strict type checking when assigning or extracting values from each column within a row.
Select Native Android Content Provider(s) from the list below.
You may declare ContentProvider with a element in the application's AndroidManifest.xml file
_______ is the Android way of doing IPC that is interface based and lightweight
Identify “Authority” part of below Content URI - content://contacts/people/3
Select the static Helper method(s) to append an ID to a ContentProvider URI
Content providers that are not declared in the manifest file are also visible to the Android system
To query content provider, both methods ________ and ______ return a Cursor object and takes the same set of arguments.
Requests to ContentResolver are automatically forwarded to the appropriate Content Provider instance
If you don't need to share data amongst multiple applications, then you can use a database directly using -