コード例 #1
0
        protected override async void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            //set toolbar
            #region
            var toolbar = FindViewById <Android.Support.V7.Widget.Toolbar>(Resource.Id.toolbar);
            SetSupportActionBar(toolbar);
            SupportActionBar.Title = "Movie Explorer";
            #endregion

            //get corresponding linear layouts
            #region
            LinearLayout topRatedMovies   = FindViewById <LinearLayout>(Resource.Id.topRatedMovies);
            LinearLayout popularMovies    = FindViewById <LinearLayout>(Resource.Id.popularMovies);
            LinearLayout nowPlayingMovies = FindViewById <LinearLayout>(Resource.Id.nowPlayingMovies);
            favoriteMovies = FindViewById <LinearLayout>(Resource.Id.favoriteMovies);
            #endregion

            // create DB path
            #region
            var docsFolder = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments);
            pathToDatabase = System.IO.Path.Combine(docsFolder, "db_sqlnet.db");
            SQLiteDatabase.createDatabase(pathToDatabase);
            #endregion

            //set Urls to retrieve movies
            #region
            string baseUri = "http://api.themoviedb.org/3/movie";
            string api_key = "?api_key=ab41356b33d100ec61e6c098ecc92140";

            string topRatedMovieUri = baseUri + "/top_rated" + api_key;
            string popularUri       = baseUri + "/popular" + api_key;
            string nowPlayingUri    = baseUri + "/now_playing" + api_key;
            #endregion

            //populate movie list
            #region
            await PopulateMovie.populateMovieList(topRatedMovieUri, topRatedMovies, this);

            await PopulateMovie.populateMovieList(popularUri, popularMovies, this);

            await PopulateMovie.populateMovieList(nowPlayingUri, nowPlayingMovies, this);

            #endregion
        }
コード例 #2
0
        protected override async void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);

            SetContentView(Resource.Layout.Detail);

            //set toolbar
            #region
            var toolbar = FindViewById <Android.Support.V7.Widget.Toolbar>(Resource.Id.toolbar);
            SetSupportActionBar(toolbar);
            SupportActionBar.Title = "Movie Explorer";
            #endregion

            //get views and layouts
            #region
            LinearLayout movieImage      = FindViewById <LinearLayout>(Resource.Id.image);
            TextView     movieName       = FindViewById <TextView>(Resource.Id.movieName);
            TextView     movieDate       = FindViewById <TextView>(Resource.Id.movieDate);
            TextView     movieIntro      = FindViewById <TextView>(Resource.Id.movieIntro);
            RatingBar    movieRating     = FindViewById <RatingBar>(Resource.Id.movieRating);
            TextView     movieVotes      = FindViewById <TextView>(Resource.Id.movieVotes);
            Button       saveToFavorites = FindViewById <Button>(Resource.Id.saveToFavorites);
            #endregion

            //get the movie id
            string movieId = Intent.GetStringExtra("movieId");

            //baseUri and key
            string baseUri = "http://api.themoviedb.org/3/movie";
            string api_key = "?api_key=ab41356b33d100ec61e6c098ecc92140";

            //get movie object
            #region
            string    uri       = baseUri + "/" + movieId + api_key;
            JsonValue jsonValue = await FetchMoviesAsync.FetchMoviesAsyncCall(uri);

            JObject movieObject = (JObject)JsonConvert.DeserializeObject(jsonValue.ToString());
            #endregion

            #region populate the views
            //populate image
            #region
            string imageUri = "http://image.tmdb.org/t/p/original" + movieObject["backdrop_path"];
            LinearLayout.LayoutParams lp        = new LinearLayout.LayoutParams(500, 700);
            ImageViewAsync            imageView = DefineImageView.GetImageView(this, lp);
            imageView.SetPadding(10, 10, 10, 10);

            ImageService
            .LoadUrl(imageUri)
            .FadeAnimation(true)
            .Into(imageView);

            movieImage.AddView(imageView);
            #endregion

            //populate the name text
            movieName.Text = movieObject["title"].ToString();

            //populate the release date
            movieDate.Text = "Release Date: " + movieObject["release_date"].ToString();

            //populate the rating
            movieRating.Rating = (float)movieObject["vote_average"] / 2;

            //populate the votes
            movieVotes.Text = "(from " + movieObject["vote_count"] + " votes)";

            //populate the description
            movieIntro.Text = movieObject["overview"].ToString();
            #endregion

            //add click event to the button
            var docsFolder     = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments);
            var pathToDatabase = System.IO.Path.Combine(docsFolder, "db_sqlnet.db");
            var existingMovie  = await SQLiteDatabase.getDataById(movieObject["id"].ToString(), pathToDatabase);

            if (existingMovie.Count == 0)
            {
                saveToFavorites.Click += async(object sender, EventArgs e) =>
                {
                    await SQLiteDatabase.insertUpdateData(new Movie { movieID = movieObject["id"].ToString(), movieImageLink = movieObject["backdrop_path"].ToString() }, pathToDatabase);
                };
                saveToFavorites.Text = "Save to Favorites";
            }

            if (existingMovie.Count != 0)
            {
                saveToFavorites.Click += async(object sender, EventArgs e) =>
                {
                    await SQLiteDatabase.deleteData(new Movie { movieID = movieObject["id"].ToString(), movieImageLink = movieObject["backdrop_path"].ToString() }, pathToDatabase);
                };
                saveToFavorites.Text = "Delete from Favorites";
            }
            #region similarMovie
            //get the similarMovies linearlayout
            LinearLayout similarMovies = FindViewById <LinearLayout>(Resource.Id.similarMovies);

            //get the similar uri and populate the similar moives
            string similarUri = baseUri + "/" + movieId + "/similar" + api_key;
            await PopulateMovie.populateMovieList(similarUri, similarMovies, this);

            #endregion
        }
コード例 #3
0
 protected override async void OnResume()
 {
     base.OnResume();
     await PopulateMovie.populateFavoriteMoviesList(favoriteMovies, pathToDatabase, this);
 }