Interface MediaSearchResult
-
public interface MediaSearchResult
Represents media item search results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCount()
Returns the number of media items in the search result.MediaItem[]
getResults(int from, int to)
Returns the subset of media item search result.
-
-
-
Method Detail
-
getCount
int getCount()
Returns the number of media items in the search result.- Returns:
- the number of media items
-
getResults
MediaItem[] getResults(int from, int to)
Returns the subset of media item search result. The result array begins at the specified from index and extends to the element at index to - 1.- Parameters:
from
- the start indexto
- the end index- Returns:
- the selected media items
-
-