private void setUpdateIntervalText() {
   Context context = ui.getActivity().getApplicationContext();
   String val;
   long interval = UserPreferences.getUpdateInterval();
   if (interval > 0) {
     int hours = (int) TimeUnit.MILLISECONDS.toHours(interval);
     String hoursStr =
         context.getResources().getQuantityString(R.plurals.time_hours_quantified, hours, hours);
     val =
         String.format(context.getString(R.string.pref_autoUpdateIntervallOrTime_every), hoursStr);
   } else {
     int[] timeOfDay = UserPreferences.getUpdateTimeOfDay();
     if (timeOfDay.length == 2) {
       Calendar cal = new GregorianCalendar();
       cal.set(Calendar.HOUR_OF_DAY, timeOfDay[0]);
       cal.set(Calendar.MINUTE, timeOfDay[1]);
       String timeOfDayStr = DateFormat.getTimeFormat(context).format(cal.getTime());
       val =
           String.format(
               context.getString(R.string.pref_autoUpdateIntervallOrTime_at), timeOfDayStr);
     } else {
       val = context.getString(R.string.pref_smart_mark_as_played_disabled);
     }
   }
   String summary =
       context.getString(R.string.pref_autoUpdateIntervallOrTime_sum)
           + "\n"
           + String.format(context.getString(R.string.pref_current_value), val);
   ui.findPreference(UserPreferences.PREF_UPDATE_INTERVAL).setSummary(summary);
 }
 private void showDrawerPreferencesDialog() {
   final Context context = ui.getActivity();
   final List<String> hiddenDrawerItems = UserPreferences.getHiddenDrawerItems();
   final String[] navTitles = context.getResources().getStringArray(R.array.nav_drawer_titles);
   final String[] NAV_DRAWER_TAGS = MainActivity.NAV_DRAWER_TAGS;
   boolean[] checked = new boolean[MainActivity.NAV_DRAWER_TAGS.length];
   for (int i = 0; i < NAV_DRAWER_TAGS.length; i++) {
     String tag = NAV_DRAWER_TAGS[i];
     if (!hiddenDrawerItems.contains(tag)) {
       checked[i] = true;
     }
   }
   AlertDialog.Builder builder = new AlertDialog.Builder(context);
   builder.setTitle(R.string.drawer_preferences);
   builder.setMultiChoiceItems(
       navTitles,
       checked,
       (dialog, which, isChecked) -> {
         if (isChecked) {
           hiddenDrawerItems.remove(NAV_DRAWER_TAGS[which]);
         } else {
           hiddenDrawerItems.add(NAV_DRAWER_TAGS[which]);
         }
       });
   builder.setPositiveButton(
       R.string.confirm_label,
       (dialog, which) -> {
         UserPreferences.setHiddenDrawerItems(hiddenDrawerItems);
       });
   builder.setNegativeButton(R.string.cancel_label, null);
   builder.create().show();
 }
 public void onResume() {
   checkItemVisibility();
   setUpdateIntervalText();
   setParallelDownloadsText(UserPreferences.getParallelDownloads());
   setEpisodeCacheSizeText(UserPreferences.getEpisodeCacheSize());
   setDataFolderText();
   updateGpodnetPreferenceScreen();
 }
  private void buildAutodownloadSelectedNetworsPreference() {
    final Activity activity = ui.getActivity();

    if (selectedNetworks != null) {
      clearAutodownloadSelectedNetworsPreference();
    }
    // get configured networks
    WifiManager wifiservice = (WifiManager) activity.getSystemService(Context.WIFI_SERVICE);
    List<WifiConfiguration> networks = wifiservice.getConfiguredNetworks();

    if (networks != null) {
      selectedNetworks = new CheckBoxPreference[networks.size()];
      List<String> prefValues = Arrays.asList(UserPreferences.getAutodownloadSelectedNetworks());
      PreferenceScreen prefScreen =
          (PreferenceScreen) ui.findPreference(PreferenceController.AUTO_DL_PREF_SCREEN);
      Preference.OnPreferenceClickListener clickListener =
          preference -> {
            if (preference instanceof CheckBoxPreference) {
              String key = preference.getKey();
              List<String> prefValuesList =
                  new ArrayList<>(Arrays.asList(UserPreferences.getAutodownloadSelectedNetworks()));
              boolean newValue = ((CheckBoxPreference) preference).isChecked();
              Log.d(TAG, "Selected network " + key + ". New state: " + newValue);

              int index = prefValuesList.indexOf(key);
              if (index >= 0 && !newValue) {
                // remove network
                prefValuesList.remove(index);
              } else if (index < 0 && newValue) {
                prefValuesList.add(key);
              }

              UserPreferences.setAutodownloadSelectedNetworks(
                  prefValuesList.toArray(new String[prefValuesList.size()]));
              return true;
            } else {
              return false;
            }
          };
      // create preference for each known network. attach listener and set
      // value
      for (int i = 0; i < networks.size(); i++) {
        WifiConfiguration config = networks.get(i);

        CheckBoxPreference pref = new CheckBoxPreference(activity);
        String key = Integer.toString(config.networkId);
        pref.setTitle(config.SSID);
        pref.setKey(key);
        pref.setOnPreferenceClickListener(clickListener);
        pref.setPersistent(false);
        pref.setChecked(prefValues.contains(key));
        selectedNetworks[i] = pref;
        prefScreen.addPreference(pref);
      }
    } else {
      Log.e(TAG, "Couldn't get list of configure Wi-Fi networks");
    }
  }
  private void showNotificationButtonsDialog() {
    final Context context = ui.getActivity();
    final List<Integer> preferredButtons = UserPreferences.getCompactNotificationButtons();
    final String[] allButtonNames =
        context.getResources().getStringArray(R.array.compact_notification_buttons_options);
    boolean[] checked = new boolean[allButtonNames.length]; // booleans default to false in java

    for (int i = 0; i < checked.length; i++) {
      if (preferredButtons.contains(i)) {
        checked[i] = true;
      }
    }

    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setTitle(
        String.format(
            context
                .getResources()
                .getString(R.string.pref_compact_notification_buttons_dialog_title),
            2));
    builder.setMultiChoiceItems(
        allButtonNames,
        checked,
        (dialog, which, isChecked) -> {
          checked[which] = isChecked;

          if (isChecked) {
            if (preferredButtons.size() < 2) {
              preferredButtons.add(which);
            } else {
              // Only allow a maximum of two selections. This is because the notification
              // on the lock screen can only display 3 buttons, and the play/pause button
              // is always included.
              checked[which] = false;
              ListView selectionView = ((AlertDialog) dialog).getListView();
              selectionView.setItemChecked(which, false);
              Snackbar.make(
                      selectionView,
                      String.format(
                          context
                              .getResources()
                              .getString(R.string.pref_compact_notification_buttons_dialog_error),
                          2),
                      Snackbar.LENGTH_SHORT)
                  .show();
            }
          } else {
            preferredButtons.remove((Integer) which);
          }
        });
    builder.setPositiveButton(
        R.string.confirm_label,
        (dialog, which) -> {
          UserPreferences.setCompactNotificationButtons(preferredButtons);
        });
    builder.setNegativeButton(R.string.cancel_label, null);
    builder.create().show();
  }
Пример #6
0
 /**
  * Change the auto-flattr settings
  *
  * @param context For accessing the shared preferences
  * @param enabled Whether automatic flattring should be enabled at all
  * @param autoFlattrThreshold The percentage of playback time after which an episode should be
  *     flattrd. Must be a value between 0 and 1 (inclusive)
  */
 public static void setAutoFlattrSettings(
     Context context, boolean enabled, float autoFlattrThreshold) {
   instanceAvailable();
   Validate.inclusiveBetween(0.0, 1.0, autoFlattrThreshold);
   PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext())
       .edit()
       .putBoolean(PREF_AUTO_FLATTR, enabled)
       .putFloat(PREF_AUTO_FLATTR_PLAYED_DURATION_THRESHOLD, autoFlattrThreshold)
       .commit();
   instance.autoFlattr = enabled;
   instance.autoFlattrPlayedDurationThreshold = autoFlattrThreshold;
 }
  private void resumeSync() {
    if (playerStatus == PlayerStatus.PAUSED || playerStatus == PlayerStatus.PREPARED) {
      int focusGained =
          audioManager.requestAudioFocus(
              audioFocusChangeListener, AudioManager.STREAM_MUSIC, AudioManager.AUDIOFOCUS_GAIN);
      if (focusGained == AudioManager.AUDIOFOCUS_REQUEST_GRANTED) {
        acquireWifiLockIfNecessary();
        setSpeed(Float.parseFloat(UserPreferences.getPlaybackSpeed()));
        mediaPlayer.start();
        if (playerStatus == PlayerStatus.PREPARED && media.getPosition() > 0) {
          mediaPlayer.seekTo(media.getPosition());
        }

        setPlayerStatus(PlayerStatus.PLAYING, media);
        pausedBecauseOfTransientAudiofocusLoss = false;
        if (android.os.Build.VERSION.SDK_INT >= 14) {
          RemoteControlClient remoteControlClient = callback.getRemoteControlClient();
          if (remoteControlClient != null) {
            audioManager.registerRemoteControlClient(remoteControlClient);
          }
        }
        audioManager.registerMediaButtonEventReceiver(
            new ComponentName(context.getPackageName(), MediaButtonReceiver.class.getName()));
        media.onPlaybackStart();

      } else {
        if (BuildConfig.DEBUG) Log.e(TAG, "Failed to request audio focus");
      }
    } else {
      if (BuildConfig.DEBUG)
        Log.d(
            TAG,
            "Call to resume() was ignored because current state of PSMP object is " + playerStatus);
    }
  }
  @SuppressLint("NewApi")
  public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == Activity.RESULT_OK
        && requestCode == DirectoryChooserActivity.RESULT_CODE_DIR_SELECTED) {
      String dir = data.getStringExtra(DirectoryChooserActivity.RESULT_SELECTED_DIR);

      File path;
      if (dir != null) {
        path = new File(dir);
      } else {
        path = ui.getActivity().getExternalFilesDir(null);
      }
      String message = null;
      final Context context = ui.getActivity().getApplicationContext();
      if (!path.exists()) {
        message = String.format(context.getString(R.string.folder_does_not_exist_error), dir);
      } else if (!path.canRead()) {
        message = String.format(context.getString(R.string.folder_not_readable_error), dir);
      } else if (!path.canWrite()) {
        message = String.format(context.getString(R.string.folder_not_writable_error), dir);
      }

      if (message == null) {
        Log.d(TAG, "Setting data folder: " + dir);
        UserPreferences.setDataFolder(dir);
        setDataFolderText();
      } else {
        AlertDialog.Builder ab = new AlertDialog.Builder(ui.getActivity());
        ab.setMessage(message);
        ab.setPositiveButton(android.R.string.ok, null);
        ab.show();
      }
    }
  }
Пример #9
0
 public static void setQueueLocked(boolean locked) {
   instanceAvailable();
   instance.queueLocked = locked;
   PreferenceManager.getDefaultSharedPreferences(instance.context)
       .edit()
       .putBoolean(PREF_QUEUE_LOCKED, locked)
       .commit();
 }
Пример #10
0
 private File getExternalFilesDirOrThrowException(Context context, String type)
     throws DownloadRequestException {
   File result = UserPreferences.getDataFolder(context, type);
   if (result == null) {
     throw new DownloadRequestException("Failed to access external storage");
   }
   return result;
 }
Пример #11
0
 /** Sets the update interval value. Should only be used for testing purposes! */
 public static void setUpdateInterval(Context context, long newValue) {
   instanceAvailable();
   SharedPreferences.Editor editor =
       PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext()).edit();
   editor.putString(PREF_UPDATE_INTERVAL, String.valueOf(newValue));
   editor.commit();
   instance.updateInterval = newValue;
 }
Пример #12
0
 public static void setHiddenDrawerItems(Context context, List<String> items) {
   instanceAvailable();
   instance.hiddenDrawerItems = items;
   String str = StringUtils.join(items, ',');
   PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext())
       .edit()
       .putString(PREF_HIDDEN_DRAWER_ITEMS, str)
       .commit();
 }
 @Override
 public void onPause() {
   super.onPause();
   if (playerStatus == PlayerStatus.PLAYING) {
     pause(false, true);
   }
   if (UserPreferences.isPersistNotify()) {
     pause(false, true);
   } else {
     pause(true, true);
   }
 }
  @SuppressWarnings("deprecation")
  private void checkItemVisibility() {
    boolean hasFlattrToken = FlattrUtils.hasToken();
    ui.findPreference(PreferenceController.PREF_FLATTR_SETTINGS)
        .setEnabled(FlattrUtils.hasAPICredentials());
    ui.findPreference(PreferenceController.PREF_FLATTR_AUTH).setEnabled(!hasFlattrToken);
    ui.findPreference(PreferenceController.PREF_FLATTR_REVOKE).setEnabled(hasFlattrToken);
    ui.findPreference(PreferenceController.PREF_AUTO_FLATTR_PREFS).setEnabled(hasFlattrToken);

    boolean autoDownload = UserPreferences.isEnableAutodownload();
    ui.findPreference(UserPreferences.PREF_EPISODE_CACHE_SIZE).setEnabled(autoDownload);
    ui.findPreference(UserPreferences.PREF_ENABLE_AUTODL_ON_BATTERY).setEnabled(autoDownload);
    ui.findPreference(UserPreferences.PREF_ENABLE_AUTODL_WIFI_FILTER).setEnabled(autoDownload);
    setSelectedNetworksEnabled(autoDownload && UserPreferences.isEnableAutodownloadWifiFilter());

    ui.findPreference(PREF_SEND_CRASH_REPORT).setEnabled(CrashReportWriter.getFile().exists());

    if (Build.VERSION.SDK_INT >= 16) {
      ui.findPreference(UserPreferences.PREF_SONIC).setEnabled(true);
    } else {
      Preference prefSonic = ui.findPreference(UserPreferences.PREF_SONIC);
      prefSonic.setSummary("[Android 4.1+]\n" + prefSonic.getSummary());
    }
  }
 private void setDataFolderText() {
   File f = UserPreferences.getDataFolder(null);
   if (f != null) {
     ui.findPreference(PreferenceController.PREF_CHOOSE_DATA_DIR).setSummary(f.getAbsolutePath());
   }
 }
 @Override
 public void onRewind() {
   super.onRewind();
   seekDelta(-UserPreferences.getSeekDeltaMs());
 }
 @Override
 public void onFastForward() {
   super.onFastForward();
   seekDelta(UserPreferences.getSeekDeltaMs());
 }
  private void showUpdateIntervalTimePreferencesDialog() {
    final Context context = ui.getActivity();

    MaterialDialog.Builder builder = new MaterialDialog.Builder(context);
    builder.title(R.string.pref_autoUpdateIntervallOrTime_title);
    builder.content(R.string.pref_autoUpdateIntervallOrTime_message);
    builder.positiveText(R.string.pref_autoUpdateIntervallOrTime_Interval);
    builder.negativeText(R.string.pref_autoUpdateIntervallOrTime_TimeOfDay);
    builder.neutralText(R.string.pref_autoUpdateIntervallOrTime_Disable);
    builder.onPositive(
        (dialog, which) -> {
          AlertDialog.Builder builder1 = new AlertDialog.Builder(context);
          builder1.setTitle(context.getString(R.string.pref_autoUpdateIntervallOrTime_Interval));
          final String[] values =
              context.getResources().getStringArray(R.array.update_intervall_values);
          final String[] entries = getUpdateIntervalEntries(values);
          long currInterval = UserPreferences.getUpdateInterval();
          int checkedItem = -1;
          if (currInterval > 0) {
            String currIntervalStr = String.valueOf(TimeUnit.MILLISECONDS.toHours(currInterval));
            checkedItem = ArrayUtils.indexOf(values, currIntervalStr);
          }
          builder1.setSingleChoiceItems(
              entries,
              checkedItem,
              (dialog1, which1) -> {
                int hours = Integer.parseInt(values[which1]);
                UserPreferences.setUpdateInterval(hours);
                dialog1.dismiss();
                setUpdateIntervalText();
              });
          builder1.setNegativeButton(context.getString(R.string.cancel_label), null);
          builder1.show();
        });
    builder.onNegative(
        (dialog, which) -> {
          int hourOfDay = 7, minute = 0;
          int[] updateTime = UserPreferences.getUpdateTimeOfDay();
          if (updateTime.length == 2) {
            hourOfDay = updateTime[0];
            minute = updateTime[1];
          }
          TimePickerDialog timePickerDialog =
              new TimePickerDialog(
                  context,
                  (view, selectedHourOfDay, selectedMinute) -> {
                    if (view.getTag() == null) { // onTimeSet() may get called twice!
                      view.setTag("TAGGED");
                      UserPreferences.setUpdateTimeOfDay(selectedHourOfDay, selectedMinute);
                      setUpdateIntervalText();
                    }
                  },
                  hourOfDay,
                  minute,
                  DateFormat.is24HourFormat(context));
          timePickerDialog.setTitle(
              context.getString(R.string.pref_autoUpdateIntervallOrTime_TimeOfDay));
          timePickerDialog.show();
        });
    builder.onNeutral(
        (dialog, which) -> {
          UserPreferences.setUpdateInterval(0);
          setUpdateIntervalText();
        });
    builder.show();
  }
  public void onCreate() {
    final Activity activity = ui.getActivity();

    if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
      // disable expanded notification option on unsupported android versions
      ui.findPreference(PreferenceController.PREF_EXPANDED_NOTIFICATION).setEnabled(false);
      ui.findPreference(PreferenceController.PREF_EXPANDED_NOTIFICATION)
          .setOnPreferenceClickListener(
              preference -> {
                Toast toast =
                    Toast.makeText(
                        activity, R.string.pref_expand_notify_unsupport_toast, Toast.LENGTH_SHORT);
                toast.show();
                return true;
              });
    }
    ui.findPreference(PreferenceController.PREF_FLATTR_REVOKE)
        .setOnPreferenceClickListener(
            preference -> {
              FlattrUtils.revokeAccessToken(activity);
              checkItemVisibility();
              return true;
            });
    ui.findPreference(PreferenceController.PREF_ABOUT)
        .setOnPreferenceClickListener(
            preference -> {
              activity.startActivity(new Intent(activity, AboutActivity.class));
              return true;
            });
    ui.findPreference(PreferenceController.STATISTICS)
        .setOnPreferenceClickListener(
            preference -> {
              activity.startActivity(new Intent(activity, StatisticsActivity.class));
              return true;
            });
    ui.findPreference(PreferenceController.PREF_OPML_EXPORT)
        .setOnPreferenceClickListener(
            preference -> {
              new OpmlExportWorker(activity).executeAsync();
              return true;
            });
    ui.findPreference(PreferenceController.PREF_CHOOSE_DATA_DIR)
        .setOnPreferenceClickListener(
            preference -> {
              if (Build.VERSION_CODES.KITKAT <= Build.VERSION.SDK_INT
                  && Build.VERSION.SDK_INT <= Build.VERSION_CODES.LOLLIPOP_MR1) {
                showChooseDataFolderDialog();
              } else {
                int readPermission =
                    ActivityCompat.checkSelfPermission(
                        activity, Manifest.permission.READ_EXTERNAL_STORAGE);
                int writePermission =
                    ActivityCompat.checkSelfPermission(
                        activity, Manifest.permission.WRITE_EXTERNAL_STORAGE);
                if (readPermission == PackageManager.PERMISSION_GRANTED
                    && writePermission == PackageManager.PERMISSION_GRANTED) {
                  openDirectoryChooser();
                } else {
                  requestPermission();
                }
              }
              return true;
            });
    ui.findPreference(PreferenceController.PREF_CHOOSE_DATA_DIR)
        .setOnPreferenceClickListener(
            preference -> {
              if (Build.VERSION.SDK_INT >= 19) {
                showChooseDataFolderDialog();
              } else {
                Intent intent = new Intent(activity, DirectoryChooserActivity.class);
                activity.startActivityForResult(
                    intent, DirectoryChooserActivity.RESULT_CODE_DIR_SELECTED);
              }
              return true;
            });
    ui.findPreference(UserPreferences.PREF_THEME)
        .setOnPreferenceChangeListener(
            (preference, newValue) -> {
              Intent i = new Intent(activity, MainActivity.class);
              i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
              activity.finish();
              activity.startActivity(i);
              return true;
            });
    ui.findPreference(UserPreferences.PREF_HIDDEN_DRAWER_ITEMS)
        .setOnPreferenceClickListener(
            preference -> {
              showDrawerPreferencesDialog();
              return true;
            });

    ui.findPreference(UserPreferences.PREF_COMPACT_NOTIFICATION_BUTTONS)
        .setOnPreferenceClickListener(
            preference -> {
              showNotificationButtonsDialog();
              return true;
            });

    ui.findPreference(UserPreferences.PREF_UPDATE_INTERVAL)
        .setOnPreferenceClickListener(
            preference -> {
              showUpdateIntervalTimePreferencesDialog();
              return true;
            });

    ui.findPreference(UserPreferences.PREF_ENABLE_AUTODL)
        .setOnPreferenceChangeListener(
            (preference, newValue) -> {
              if (newValue instanceof Boolean) {
                boolean enabled = (Boolean) newValue;
                ui.findPreference(UserPreferences.PREF_EPISODE_CACHE_SIZE).setEnabled(enabled);
                ui.findPreference(UserPreferences.PREF_ENABLE_AUTODL_ON_BATTERY)
                    .setEnabled(enabled);
                ui.findPreference(UserPreferences.PREF_ENABLE_AUTODL_WIFI_FILTER)
                    .setEnabled(enabled);
                setSelectedNetworksEnabled(
                    enabled && UserPreferences.isEnableAutodownloadWifiFilter());
              }
              return true;
            });
    ui.findPreference(UserPreferences.PREF_ENABLE_AUTODL_WIFI_FILTER)
        .setOnPreferenceChangeListener(
            (preference, newValue) -> {
              if (newValue instanceof Boolean) {
                setSelectedNetworksEnabled((Boolean) newValue);
                return true;
              } else {
                return false;
              }
            });
    ui.findPreference(UserPreferences.PREF_PARALLEL_DOWNLOADS)
        .setOnPreferenceChangeListener(
            (preference, o) -> {
              if (o instanceof String) {
                try {
                  int value = Integer.parseInt((String) o);
                  if (1 <= value && value <= 50) {
                    setParallelDownloadsText(value);
                    return true;
                  }
                } catch (NumberFormatException e) {
                  return false;
                }
              }
              return false;
            });
    // validate and set correct value: number of downloads between 1 and 50 (inclusive)
    final EditText ev =
        ((EditTextPreference) ui.findPreference(UserPreferences.PREF_PARALLEL_DOWNLOADS))
            .getEditText();
    ev.addTextChangedListener(
        new TextWatcher() {
          @Override
          public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

          @Override
          public void onTextChanged(CharSequence s, int start, int before, int count) {}

          @Override
          public void afterTextChanged(Editable s) {
            if (s.length() > 0) {
              try {
                int value = Integer.parseInt(s.toString());
                if (value <= 0) {
                  ev.setText("1");
                } else if (value > 50) {
                  ev.setText("50");
                }
              } catch (NumberFormatException e) {
                ev.setText("6");
              }
              ev.setSelection(ev.getText().length());
            }
          }
        });
    ui.findPreference(UserPreferences.PREF_EPISODE_CACHE_SIZE)
        .setOnPreferenceChangeListener(
            (preference, o) -> {
              if (o instanceof String) {
                setEpisodeCacheSizeText(UserPreferences.readEpisodeCacheSize((String) o));
              }
              return true;
            });
    ui.findPreference(PreferenceController.PREF_PLAYBACK_SPEED_LAUNCHER)
        .setOnPreferenceClickListener(
            preference -> {
              VariableSpeedDialog.showDialog(activity);
              return true;
            });
    ui.findPreference(PreferenceController.PREF_GPODNET_SETLOGIN_INFORMATION)
        .setOnPreferenceClickListener(
            preference -> {
              AuthenticationDialog dialog =
                  new AuthenticationDialog(
                      activity,
                      R.string.pref_gpodnet_setlogin_information_title,
                      false,
                      false,
                      GpodnetPreferences.getUsername(),
                      null) {

                    @Override
                    protected void onConfirmed(
                        String username, String password, boolean saveUsernamePassword) {
                      GpodnetPreferences.setPassword(password);
                    }
                  };
              dialog.show();
              return true;
            });
    ui.findPreference(PreferenceController.PREF_GPODNET_SYNC)
        .setOnPreferenceClickListener(
            preference -> {
              GpodnetSyncService.sendSyncIntent(ui.getActivity().getApplicationContext());
              Toast toast =
                  Toast.makeText(
                      ui.getActivity(), R.string.pref_gpodnet_sync_started, Toast.LENGTH_SHORT);
              toast.show();
              return true;
            });
    ui.findPreference(PreferenceController.PREF_GPODNET_LOGOUT)
        .setOnPreferenceClickListener(
            preference -> {
              GpodnetPreferences.logout();
              Toast toast =
                  Toast.makeText(activity, R.string.pref_gpodnet_logout_toast, Toast.LENGTH_SHORT);
              toast.show();
              updateGpodnetPreferenceScreen();
              return true;
            });
    ui.findPreference(PreferenceController.PREF_GPODNET_HOSTNAME)
        .setOnPreferenceClickListener(
            preference -> {
              GpodnetSetHostnameDialog.createDialog(activity)
                  .setOnDismissListener(dialog -> updateGpodnetPreferenceScreen());
              return true;
            });

    ui.findPreference(PreferenceController.PREF_AUTO_FLATTR_PREFS)
        .setOnPreferenceClickListener(
            preference -> {
              AutoFlattrPreferenceDialog.newAutoFlattrPreferenceDialog(
                  activity,
                  new AutoFlattrPreferenceDialog.AutoFlattrPreferenceDialogInterface() {
                    @Override
                    public void onCancelled() {}

                    @Override
                    public void onConfirmed(boolean autoFlattrEnabled, float autoFlattrValue) {
                      UserPreferences.setAutoFlattrSettings(autoFlattrEnabled, autoFlattrValue);
                      checkItemVisibility();
                    }
                  });
              return true;
            });
    ui.findPreference(UserPreferences.PREF_IMAGE_CACHE_SIZE)
        .setOnPreferenceChangeListener(
            (preference, o) -> {
              if (o instanceof String) {
                int newValue = Integer.parseInt((String) o) * 1024 * 1024;
                if (newValue != UserPreferences.getImageCacheSize()) {
                  AlertDialog.Builder dialog = new AlertDialog.Builder(ui.getActivity());
                  dialog.setTitle(android.R.string.dialog_alert_title);
                  dialog.setMessage(R.string.pref_restart_required);
                  dialog.setPositiveButton(android.R.string.ok, null);
                  dialog.show();
                }
                return true;
              }
              return false;
            });
    ui.findPreference(PREF_PROXY)
        .setOnPreferenceClickListener(
            preference -> {
              ProxyDialog dialog = new ProxyDialog(ui.getActivity());
              dialog.createDialog().show();
              return true;
            });
    ui.findPreference(PREF_KNOWN_ISSUES)
        .setOnPreferenceClickListener(
            preference -> {
              openInBrowser("https://github.com/AntennaPod/AntennaPod/labels/bug");
              return true;
            });
    ui.findPreference(PREF_FAQ)
        .setOnPreferenceClickListener(
            preference -> {
              openInBrowser("http://antennapod.org/faq.html");
              return true;
            });
    ui.findPreference(PREF_SEND_CRASH_REPORT)
        .setOnPreferenceClickListener(
            preference -> {
              Intent emailIntent = new Intent(Intent.ACTION_SEND);
              emailIntent.setType("text/plain");
              emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] {"*****@*****.**"});
              emailIntent.putExtra(Intent.EXTRA_SUBJECT, "AntennaPod Crash Report");
              emailIntent.putExtra(
                  Intent.EXTRA_TEXT, "Please describe what you were doing when the app crashed");
              // the attachment
              emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(CrashReportWriter.getFile()));
              String intentTitle = ui.getActivity().getString(R.string.send_email);
              ui.getActivity().startActivity(Intent.createChooser(emailIntent, intentTitle));
              return true;
            });
    // checks whether Google Play Services is installed on the device (condition necessary for Cast
    // support)
    ui.findPreference(UserPreferences.PREF_CAST_ENABLED)
        .setOnPreferenceChangeListener(
            (preference, o) -> {
              if (o instanceof Boolean && ((Boolean) o)) {
                final int googlePlayServicesCheck =
                    GoogleApiAvailability.getInstance()
                        .isGooglePlayServicesAvailable(ui.getActivity());
                if (googlePlayServicesCheck == ConnectionResult.SUCCESS) {
                  return true;
                } else {
                  GoogleApiAvailability.getInstance()
                      .getErrorDialog(ui.getActivity(), googlePlayServicesCheck, 0)
                      .show();
                  return false;
                }
              }
              return true;
            });
    buildEpisodeCleanupPreference();
    buildSmartMarkAsPlayedPreference();
    buildAutodownloadSelectedNetworsPreference();
    setSelectedNetworksEnabled(UserPreferences.isEnableAutodownloadWifiFilter());
  }
Пример #20
0
 /** Reads episode cache size as it is saved in the episode_cache_size_values array. */
 public static int readEpisodeCacheSize(String valueFromPrefs) {
   instanceAvailable();
   return instance.readEpisodeCacheSizeInternal(valueFromPrefs);
 }
 private void showChooseDataFolderDialog() {
   Context context = ui.getActivity();
   File dataFolder = UserPreferences.getDataFolder(null);
   if (dataFolder == null) {
     new MaterialDialog.Builder(ui.getActivity())
         .title(R.string.error_label)
         .content(R.string.external_storage_error_msg)
         .neutralText(android.R.string.ok)
         .show();
     return;
   }
   String dataFolderPath = dataFolder.getAbsolutePath();
   int selectedIndex = -1;
   File[] mediaDirs = ContextCompat.getExternalFilesDirs(context, null);
   List<String> folders = new ArrayList<>(mediaDirs.length);
   List<CharSequence> choices = new ArrayList<>(mediaDirs.length);
   for (int i = 0; i < mediaDirs.length; i++) {
     File dir = mediaDirs[i];
     if (dir == null || !dir.exists() || !dir.canRead() || !dir.canWrite()) {
       continue;
     }
     String path = mediaDirs[i].getAbsolutePath();
     folders.add(path);
     if (dataFolderPath.equals(path)) {
       selectedIndex = i;
     }
     int index = path.indexOf("Android");
     String choice;
     if (index >= 0) {
       choice = path.substring(0, index);
     } else {
       choice = path;
     }
     long bytes = StorageUtils.getFreeSpaceAvailable(path);
     String freeSpace =
         String.format(
             context.getString(R.string.free_space_label), Converter.byteToString(bytes));
     choices.add(
         Html.fromHtml("<html><small>" + choice + " [" + freeSpace + "]" + "</small></html>"));
   }
   if (choices.size() == 0) {
     new MaterialDialog.Builder(ui.getActivity())
         .title(R.string.error_label)
         .content(R.string.external_storage_error_msg)
         .neutralText(android.R.string.ok)
         .show();
     return;
   }
   MaterialDialog dialog =
       new MaterialDialog.Builder(ui.getActivity())
           .title(R.string.choose_data_directory)
           .content(R.string.choose_data_directory_message)
           .items(choices.toArray(new CharSequence[choices.size()]))
           .itemsCallbackSingleChoice(
               selectedIndex,
               (dialog1, itemView, which, text) -> {
                 String folder = folders.get(which);
                 Log.d(TAG, "data folder: " + folder);
                 UserPreferences.setDataFolder(folder);
                 setDataFolderText();
                 return true;
               })
           .negativeText(R.string.cancel_label)
           .cancelable(true)
           .build();
   dialog.show();
 }