4. The development tools that can be downloaded from Android SDK and AVD Manager are SDK Androidplatform, NDK-platform, emulator images, and USB drivers for handsets.
Correct Answer : Get Lastest Questions and Answer : Explanation: The AVD Manager provides a graphical user interface in which you can create and manage Android Virtual Devices (AVDs), which are required by the Android Emulator.
You can launch the AVD Manager in one of the following ways:
In Android Studio: select Tools > Android > AVD Manager, or click the AVD Manager icon in the toolbar. In other IDEs: Navigate to your SDK's tools/ directory and execute android avd.
Question : Which of these is the correct explanation regarding the following methods? (1)android.content.Context.sendBroadcast (2)android.content.Context.startActivity
Correct Answer : Get Lastest Questions and Answer : Explanation: public abstract void sendBroadcast (Intent intent, String receiverPermission)
Added in API level 1 Broadcast the given intent to all interested BroadcastReceivers, allowing an optional required permission to be enforced. This call is asynchronous; it returns immediately, and you will continue executing while the receivers are run. No results are propagated from receivers and receivers can not abort the broadcast. If you want to allow receivers to propagate results or abort the broadcast, you must send an ordered broadcast using sendOrderedBroadcast(Intent, String).
public abstract void startActivity (Intent intent, Bundle options)
Added in API level 16 Launch a new activity. You will not receive any information about when the activity exits.
Note that if this method is being called from outside of an Activity Context, then the Intent must include the FLAG_ACTIVITY_NEW_TASK launch flag. This is because, without being started from an existing Activity, there is no existing task in which to place the new activity and thus it needs to be placed in its own separate task.