@Override
  public void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);

    SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
    boolean alwaysDownload =
        preferences.getBoolean(getString(R.string.preference_auto_download_key), true);

    if (alwaysDownload) {
      DownloadTickCheckTask task = new DownloadTickCheckTask(this, this);
      task.execute();
    } else {
      initialize();
    }
  }