If you want to configure a link between two Android activities in the same Android application, you need to use:
Which of the following choices is the main role of the button which is illustrated in the red rectangle over the Android Studio tool bar?
Fill in the blank space in the following sentence with the correct choice: To configure your style as the theme for all your app activities (entire app). open AndroidManifest.xml, and set the theme by adding android:theme="@style/your_style_name'' attribute to the.........................
The following image includes Android code for creating a Date Picker. The date will appear in TextView which has id: dateText. Which of the following choices is correct about why you must add T to the month as illustrated in the code highlighted in brown?
Check the following image which is a part of AndroidManifest.xml file, then select which of the following choices is the correct description of the gray highlighted color of this code?
Google Maps allows web sites, mobile apps and other media to connect to its database and import it in JSON format. This web connection between Google maps database and mobile applications are done through https connections and using an API key.
Android SDK platform is a set of libraries and APIs that provide necessary classes, methods and interfaces to develop Android applications and allow you to compile your code.
Which of the following files has the correct name for a layout design file of an activity in an Android app?
The following Android code will show the small popup message "Message saved as draft" for 3.5 seconds, and then automatically disappears: Toast.makeText(this, "Message saved as draft". Toast.LENGTH_LONG).show()
The SharedPreferences class provides a general framework that lets you save and retrieve persistent key-value pairs of primitive data types.