What View allows you to add a very large number of items to a list while still being able to scroll efficiently without slowing the interface?

a. ListFragment

b. ListView

c. ListActivity

d. RecyclerView


d. RecyclerView
RecyclerView allows you to add a very large number of items to a list while still being able to scroll efficiently without slowing the interface.

Computer Science & Information Technology

You might also like to view...

Consider array items, which contains the values 0, 2, 4, 6 and 8. If method changeArray is called with the method call changeArray(items, items[2]), what values are stored in items after the method has finished executing?

``` public static void changeArray(int[] passedArray, int value) { passedArray[value] = 12; value = 5; } ``` a. 0, 2, 5, 6, 12. b. 0, 2, 12, 6, 8. c. 0, 2, 4, 6, 5. d. 0, 2, 4, 6, 12.

Computer Science & Information Technology

The body of an if statement that contains multiple statements is placed in _____________

a) () b) [] c) <> d) {}

Computer Science & Information Technology

At one point ________ was the largest and most popular social bookmarking site

A) Digg B) reddit C) Delicious D) StumbleUpon

Computer Science & Information Technology

Read the following sentence and key the correct terminal punctuation mark in the blank.Marcus introduced the speaker _____?

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology