Can you use an Intent to provide data to a ContentProvider? If not, what would be the proper mechanism for doing this?
1695What is the correct way to check if a Compass sensor is present on the system? Explain your answer.
2249The last callback in the lifecycle of an activity is onDestroy(). The system calls this method on your activity as the final signal that your activity instance is being completely removed from the system memory. Usually, the system will call onPause() and onStop() before calling onDestroy(). Describe a scenario, though, where onPause() and onStop() would not be invoked.
2743Under what condition could the code sample below crash your application? How would you modify the code to avoid this potential problem? Explain your answer. Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage); sendIntent.setType(HTTP.PLAIN_TEXT_TYPE); // "text/plain" MIME type startActivity(sendIntent);
4168
Why bytecode cannot be run in android?
Kindly name few of the last code given to android different versions?
How do I get google play on my android phone?
How many types of android phones are there?
Explain broadcast receiver component of android?
What is the name of the database used in android?
How will apps change with android 2.2?
Which dialog boxes that are supported in android? Explain?
What is armv7?
What is an uris?
Who inventors of android ?
What is nest?
Explain the three common use cases for using an intent?
What is androidtest/ directory?
Do you know what are handlers?