/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.android.asynctaskloader;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.EditText;
import android.widget.ProgressBar;
import android.widget.TextView;
import com.example.android.asynctaskloader.utilities.NetworkUtils;
import java.io.IOException;
import java.net.URL;
public class MainActivity extends AppCompatActivity {
// COMPLETED (1) Create a static final key to store the query's URL
/* A constant to save and restore the URL that is being displayed */
private static final String SEARCH_QUERY_URL_EXTRA = "query";
// COMPLETED (2) Create a static final key to store the search's raw JSON
/* A constant to save and restore the JSON that is being displayed */
private static final String SEARCH_RESULTS_RAW_JSON = "results";
private EditText mSearchBoxEditText;
private TextView mUrlDisplayTextView;
private TextView mSearchResultsTextView;
private TextView mErrorMessageDisplay;
private ProgressBar mLoadingIndicator;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mSearchBoxEditText = (EditText) findViewById(R.id.et_search_box);
mUrlDisplayTextView = (TextView) findViewById(R.id.tv_url_display);
mSearchResultsTextView = (TextView) findViewById(R.id.tv_github_search_results_json);
mErrorMessageDisplay = (TextView) findViewById(R.id.tv_error_message_display);
mLoadingIndicator = (ProgressBar) findViewById(R.id.pb_loading_indicator);
// COMPLETED (9) If the savedInstanceState bundle is not null, set the text of the URL and search results TextView respectively
if (savedInstanceState != null) {
String queryUrl = savedInstanceState.getString(SEARCH_QUERY_URL_EXTRA);
String rawJsonSearchResults = savedInstanceState.getString(SEARCH_RESULTS_RAW_JSON);
mUrlDisplayTextView.setText(queryUrl);
mSearchResultsTextView.setText(rawJsonSearchResults);
}
}
/**
* This method retrieves the search text from the EditText, constructs the
* URL (using {@link NetworkUtils}) for the github repository you'd like to find, displays
* that URL in a TextView, and finally fires off an AsyncTask to perform the GET request using
* our {@link GithubQueryTask}
*/
private void makeGithubSearchQuery() {
String githubQuery = mSearchBoxEditText.getText().toString();
URL githubSearchUrl = NetworkUtils.buildUrl(githubQuery);
mUrlDisplayTextView.setText(githubSearchUrl.toString());
new GithubQueryTask().execute(githubSearchUrl);
}
/**
* This method will make the View for the JSON data visible and
* hide the error message.
* <p>
* Since it is okay to redundantly set the visibility of a View, we don't
* need to check whether each view is currently visible or invisible.
*/
private void showJsonDataView() {
/* First, make sure the error is invisible */
mErrorMessageDisplay.setVisibility(View.INVISIBLE);
/* Then, make sure the JSON data is visible */
mSearchResultsTextView.setVisibility(View.VISIBLE);
}
/**
* This method will make the error message visible and hide the JSON
* View.
* <p>
* Since it is okay to redundantly set the visibility of a View, we don't
* need to check whether each view is currently visible or invisible.
*/
private void showErrorMessage() {
/* First, hide the currently visible data */
mSearchResultsTextView.setVisibility(View.INVISIBLE);
/* Then, show the error */
mErrorMessageDisplay.setVisibility(View.VISIBLE);
}
public class GithubQueryTask extends AsyncTask<URL, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
mLoadingIndicator.setVisibility(View.VISIBLE);
}
@Override
protected String doInBackground(URL... params) {
URL searchUrl = params[0];
String githubSearchResults = null;
try {
githubSearchResults = NetworkUtils.getResponseFromHttpUrl(searchUrl);
} catch (IOException e) {
e.printStackTrace();
}
return githubSearchResults;
}
@Override
protected void onPostExecute(String githubSearchResults) {
mLoadingIndicator.setVisibility(View.INVISIBLE);
if (githubSearchResults != null && !githubSearchResults.equals("")) {
showJsonDataView();
mSearchResultsTextView.setText(githubSearchResults);
} else {
showErrorMessage();
}
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int itemThatWasClickedId = item.getItemId();
if (itemThatWasClickedId == R.id.action_search) {
makeGithubSearchQuery();
return true;
}
return super.onOptionsItemSelected(item);
}
// COMPLETED (3) Override onSaveInstanceState to persist data across Activity recreation
@Override
protected void onSaveInstanceState(Bundle outState) {
// COMPLETED (4) Make sure super.onSaveInstanceState is called before doing anything else
super.onSaveInstanceState(outState);
// COMPLETED (5) Put the contents of the TextView that contains our URL into a variable
String queryUrl = mUrlDisplayTextView.getText().toString();
// COMPLETED (6) Using the key for the query URL, put the string in the outState Bundle
outState.putString(SEARCH_QUERY_URL_EXTRA, queryUrl);
// COMPLETED (7) Put the contents of the TextView that contains our raw JSON search results into a variable
String rawJsonSearchResults = mSearchResultsTextView.getText().toString();
// COMPLETED (8) Using the key for the raw JSON search results, put the search results into the outState Bundle
outState.putString(SEARCH_RESULTS_RAW_JSON, rawJsonSearchResults);
}
}