Home | History | Annotate | Download | only in recommendation

Lines Matching refs:Movie

32 import com.example.android.tvleanback.model.Movie;
62 HashMap<String, List<Movie>> recommendations = VideoProvider.getMovieList();
78 for (Map.Entry<String, List<Movie>> entry : recommendations.entrySet()) {
79 for (Movie movie : entry.getValue()) {
80 Log.d(TAG, "Recommendation - " + movie.getTitle());
81 flattenedRecommendations.add(movie);
86 Movie movie;
88 movie = (Movie) flattenedRecommendations.get(i);
90 .setBackground(movie.getCardImageUrl())
93 .setTitle(movie.getTitle())
95 .setIntent(buildPendingIntent(movie, i + 1));
99 .load(movie.getCardImageUrl())
112 private PendingIntent buildPendingIntent(Movie movie, int id) {
114 detailsIntent.putExtra(MovieDetailsActivity.MOVIE, movie);
122 detailsIntent.setAction(movie.getId());