Types of Android applications?
What is google dagger?
When will it be available in a ROM?
What are the primary components used in android architecture?
What is the importance of having an emulator within the android environment?
What are the activity lifecyle callbacks?
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);
What are the names of the specific logcats?
how to write a custom adapter in android?
What is android:minsdkversion?
What are the basic tools used to develop an android app?
Do you know launch modes in android?
What is activitycreator?