4. Since Toast automatically closes after display, a dismiss () method is not provided
Correct Answer : Get Lastest Questions and Answer : Explanation: A toast provides simple feedback about an operation in a small popup. It only fills the amount of space required for the message and the current activity remains visible and interactive. For example, navigating away from an email before you send it triggers a "Draft saved" toast to let you know that you can continue editing later. Toasts automatically disappear after a timeout.
If a simple text message isn't enough, you can create a customized layout for your toast notification. To create a custom layout, define a View layout, in XML or in your application code, and pass the root View object to the setView(View) method.
Question : Which ContentProvider does Android not provide as a standard?
Correct Answer : Get Lastest Questions and Answer : Explanation: Content providers are one of the primary building blocks of Android applications, providing content to applications. They encapsulate data and provide it to applications through the single ContentResolver interface. A content provider is only required if you need to share data between multiple applications. For example, the contacts data is used by multiple applications and must be stored in a content provider. If you don't need to share data amongst multiple applications you can use a database directly via SQLiteDatabase.
When a request is made via a ContentResolver the system inspects the authority of the given URI and passes the request to the content provider registered with the authority. The content provider can interpret the rest of the URI however it wants. The UriMatcher class is helpful for parsing URIs.
Question : Which of these is the incorrect explanation of SQLite?
1. There are 5 types of data type stored in column; Null, Integer, Real, Text, and Blob.
2. There are restrictions on some functions of SQLite loaded on Android
4. SQLite is a database that saves data in a single file
Correct Answer : Get Lastest Questions and Answer : Explanation: SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation.
SQLite supports all the relational database features. In order to access this database, you don't need to establish any kind of connections for it like JDBC,ODBC e.t.c