Correct Answer : Get Lastest Questions and Answer : Explanation: String ACCESS_CHECKIN_PROPERTIES Allows read/write access to the "properties" table in the checkin database, to change values that get uploaded. String ACCESS_COARSE_LOCATION Allows an app to access approximate location. String ACCESS_FINE_LOCATION Allows an app to access precise location. String ACCESS_LOCATION_EXTRA_COMMANDS Allows an application to access extra location provider commands. String ACCESS_NETWORK_STATE Allows applications to access information about networks. String ACCESS_NOTIFICATION_POLICY Marker permission for applications that wish to access notification policy. String ACCESS_WIFI_STATE Allows applications to access information about Wi-Fi networks.
Question : Which of these is the incorrect explanation of the adb command?
1. The "adb start-server" command starts the adb server.
2. The "adb devices" command lists connected handsets and emulators.
4. You install an apk with the "adb install" command
Correct Answer : Get Lastest Questions and Answer : Explanation: The Android Debug Bridge (adb) provides a Unix shell that you can use to run a variety of commands on an emulator or connected device. The command binaries are stored in the file system of the emulator or device, at /system/bin/...
Question : The following code is a part of an Activity class to create a dialog. Which is the Activity class method used to display this dialog?
This method was deprecated in API level 13. Use the new DialogFragment class with FragmentManager instead; this is also available on older platforms through the Android compatibility package.
Simple version of showDialog(int, Bundle) that does not take any arguments. Simply calls showDialog(int, Bundle) with null arguments. Why
A fragment that displays a dialog window, floating on top of its activity's window. This fragment contains a Dialog object, which it displays as appropriate based on the fragment's state. Control of the dialog (deciding when to show, hide, dismiss it) should be done through the API here, not with direct calls on the dialog.