What is Adapter?
Answer / mady
Adapter are bridging classes that bind data to Views(such as List Views) used in the user interface. The adapter is responsible for creating for creating the child Views used to represent each item within the parent View, and providing access to the underlying data.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is color/ directory?
Lists life cycle methods of android activity?
What are the dialog boxes that are supported in android?
What is android stickey intent?
Is android or iphone better?
How is content provider implemented?
What is service lifecycle
How does recyclerview differ from listview?
What is access data using content provider:
What is action_view?
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 is a fragment? How it differs from activity?