Can you use an Intent to provide data to a ContentProvider? If not, what would be the proper mechanism for doing this?
1607What is the correct way to check if a Compass sensor is present on the system? Explain your answer.
2153The 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.
2647Under 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);
3953
Which dialog boxes can you use in you Android application?
What is the function of an intent filter?
What is an apk format?
What are the steps that are required in service lifecycle?
What is dalvik virtual machine (dvm)?
what are the main advantages of web services in android?
Why android is the most popular mobile operating system in the world?
What is idl (interface definition language)?
to write a back ground functionality in an activity, should I use a thread or service?
Is android 7 any good?
Explain what are intent filters?
What is a content provider? How is it implemented?
how to fetch a contact person number from contact application using content provider?
What is the mobile application development all about?
What is main/java/com.