Explain the services component of android?
No Answer is Posted For this Question
Be the First to Post Answer
State the life cycle methods of android activities?
The 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.
Should we jump in to android? What is the guarantee that’s what I will see on a phone? Will service providers turn off things?
What is needed to make a multiple choice list with a custom view for each row?
What is an DDMS ?
What is nine-patch images tool in android?
What is AAPT?
What is a job scheduling?
Is android marshmallow better than nougat?
Can we deploy executable jars on android?
Write a program that shows the creation of reusable user interface that includes the layout.
Under 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);