Which of the below choices is the best answer to fill the empty space in the following sentence? If you want to give all text widgets in an app the same format such as font color, font size, and font family, you should add the style attribute to the TextView XML tags in layout file and set the attribute value to the same style name. You should define that style by adding a new style tag "style name-style_name" inside...............................
Android is an open source, Linux-based software stack.
Which of the following files has the correct name for a layout design file of an activity in an Android app?
What is the main role of adding the following permission tag to AndroidManifest.xml file in an Android app?
Check the following image which includes Android code for a sum calculator. Which of the following choices is correct about this Android code?
Android Studio is the official IDE for Android application development.
Assume you were given the code of an Android app that include a Google Map. When you checked the apps code, you found the following: var locationMangaer: LocationManager?=null var locationUstener: LocationListener?=null Which of the following is true about this app?
The following images include an Android code for SeekBar (id: MyseekBar) and one state of its operation. What does "Result" represent in this code?
Check the following image which includes Android code. In this code when the app user clicks the button, the user will get a toast message which states "Hello Android ATC". After executing the code, where on the android device screen will the toast message appear?
The following Android code displays a Toast message. Which of the following is the correct parameter to replace Toast.xyz in this line of code? Toast.makeText(this,"Message saved as draff ,Toast.xyz).show()