Merge pull request #314 from satiricon/pref-filepicker
File picker for download preferences.
This commit is contained in:
commit
dc46b3f6c0
|
@ -137,5 +137,12 @@
|
||||||
<service
|
<service
|
||||||
android:name="us.shandian.giga.service.DownloadManagerService"/>
|
android:name="us.shandian.giga.service.DownloadManagerService"/>
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.nononsenseapps.filepicker.FilePickerActivity"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:theme="@style/FilePickerTheme"
|
||||||
|
android:launchMode="singleTask">
|
||||||
|
</activity>
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -1,18 +1,15 @@
|
||||||
package org.schabi.newpipe;
|
package org.schabi.newpipe;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
|
import android.content.ClipData;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.content.res.Configuration;
|
import android.content.res.Configuration;
|
||||||
import android.media.AudioManager;
|
import android.net.Uri;
|
||||||
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.os.Environment;
|
|
||||||
import android.preference.CheckBoxPreference;
|
|
||||||
import android.preference.EditTextPreference;
|
|
||||||
import android.preference.ListPreference;
|
|
||||||
import android.preference.PreferenceActivity;
|
import android.preference.PreferenceActivity;
|
||||||
import android.preference.PreferenceFragment;
|
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
import android.support.annotation.LayoutRes;
|
import android.support.annotation.LayoutRes;
|
||||||
import android.support.annotation.NonNull;
|
import android.support.annotation.NonNull;
|
||||||
|
@ -23,6 +20,10 @@ import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
|
||||||
|
import com.nononsenseapps.filepicker.FilePickerActivity;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
import info.guardianproject.netcipher.proxy.OrbotHelper;
|
import info.guardianproject.netcipher.proxy.OrbotHelper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -47,8 +48,8 @@ import info.guardianproject.netcipher.proxy.OrbotHelper;
|
||||||
|
|
||||||
public class SettingsActivity extends PreferenceActivity {
|
public class SettingsActivity extends PreferenceActivity {
|
||||||
|
|
||||||
private static final int REQUEST_INSTALL_ORBOT = 0x1234;
|
public static final int REQUEST_INSTALL_ORBOT = 0x1234;
|
||||||
private AppCompatDelegate mDelegate;
|
private AppCompatDelegate mDelegate = null;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceBundle) {
|
protected void onCreate(Bundle savedInstanceBundle) {
|
||||||
|
@ -64,113 +65,59 @@ public class SettingsActivity extends PreferenceActivity {
|
||||||
getFragmentManager().beginTransaction()
|
getFragmentManager().beginTransaction()
|
||||||
.replace(android.R.id.content, new SettingsFragment())
|
.replace(android.R.id.content, new SettingsFragment())
|
||||||
.commit();
|
.commit();
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class SettingsFragment extends PreferenceFragment{
|
|
||||||
SharedPreferences.OnSharedPreferenceChangeListener prefListener;
|
|
||||||
|
|
||||||
// get keys
|
|
||||||
String DEFAULT_RESOLUTION_PREFERENCE;
|
|
||||||
String DEFAULT_AUDIO_FORMAT_PREFERENCE;
|
|
||||||
String SEARCH_LANGUAGE_PREFERENCE;
|
|
||||||
String DOWNLOAD_PATH_PREFERENCE;
|
|
||||||
String DOWNLOAD_PATH_AUDIO_PREFERENCE;
|
|
||||||
String USE_TOR_KEY;
|
|
||||||
|
|
||||||
private ListPreference defaultResolutionPreference;
|
|
||||||
private ListPreference defaultAudioFormatPreference;
|
|
||||||
private ListPreference searchLanguagePreference;
|
|
||||||
private EditTextPreference downloadPathPreference;
|
|
||||||
private EditTextPreference downloadPathAudioPreference;
|
|
||||||
private CheckBoxPreference useTorCheckBox;
|
|
||||||
private SharedPreferences defaultPreferences;
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
|
||||||
super.onCreate(savedInstanceState);
|
|
||||||
addPreferencesFromResource(R.xml.settings);
|
|
||||||
|
|
||||||
final Activity activity = getActivity();
|
|
||||||
|
|
||||||
defaultPreferences = PreferenceManager.getDefaultSharedPreferences(activity);
|
|
||||||
|
|
||||||
// get keys
|
|
||||||
DEFAULT_RESOLUTION_PREFERENCE =getString(R.string.default_resolution_key);
|
|
||||||
DEFAULT_AUDIO_FORMAT_PREFERENCE =getString(R.string.default_audio_format_key);
|
|
||||||
SEARCH_LANGUAGE_PREFERENCE =getString(R.string.search_language_key);
|
|
||||||
DOWNLOAD_PATH_PREFERENCE = getString(R.string.download_path_key);
|
|
||||||
DOWNLOAD_PATH_AUDIO_PREFERENCE = getString(R.string.download_path_audio_key);
|
|
||||||
USE_TOR_KEY = getString(R.string.use_tor_key);
|
|
||||||
|
|
||||||
// get pref objects
|
|
||||||
defaultResolutionPreference =
|
|
||||||
(ListPreference) findPreference(DEFAULT_RESOLUTION_PREFERENCE);
|
|
||||||
defaultAudioFormatPreference =
|
|
||||||
(ListPreference) findPreference(DEFAULT_AUDIO_FORMAT_PREFERENCE);
|
|
||||||
searchLanguagePreference =
|
|
||||||
(ListPreference) findPreference(SEARCH_LANGUAGE_PREFERENCE);
|
|
||||||
downloadPathPreference =
|
|
||||||
(EditTextPreference) findPreference(DOWNLOAD_PATH_PREFERENCE);
|
|
||||||
downloadPathAudioPreference =
|
|
||||||
(EditTextPreference) findPreference(DOWNLOAD_PATH_AUDIO_PREFERENCE);
|
|
||||||
useTorCheckBox = (CheckBoxPreference) findPreference(USE_TOR_KEY);
|
|
||||||
|
|
||||||
prefListener = new SharedPreferences.OnSharedPreferenceChangeListener() {
|
|
||||||
@Override
|
|
||||||
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
|
|
||||||
String key) {
|
|
||||||
Activity a = getActivity();
|
|
||||||
if(a != null) {
|
|
||||||
updateSummary();
|
|
||||||
|
|
||||||
if (defaultPreferences.getBoolean(USE_TOR_KEY, false)) {
|
|
||||||
if (OrbotHelper.isOrbotInstalled(a)) {
|
|
||||||
App.configureTor(true);
|
|
||||||
OrbotHelper.requestStartTor(a);
|
|
||||||
} else {
|
|
||||||
Intent intent = OrbotHelper.getOrbotInstallIntent(a);
|
|
||||||
a.startActivityForResult(intent, REQUEST_INSTALL_ORBOT);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
App.configureTor(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
defaultPreferences.registerOnSharedPreferenceChangeListener(prefListener);
|
|
||||||
|
|
||||||
updateSummary();
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is used to show the status of some preference in the description
|
|
||||||
private void updateSummary() {
|
|
||||||
defaultResolutionPreference.setSummary(
|
|
||||||
defaultPreferences.getString(DEFAULT_RESOLUTION_PREFERENCE,
|
|
||||||
getString(R.string.default_resolution_value)));
|
|
||||||
defaultAudioFormatPreference.setSummary(
|
|
||||||
defaultPreferences.getString(DEFAULT_AUDIO_FORMAT_PREFERENCE,
|
|
||||||
getString(R.string.default_audio_format_value)));
|
|
||||||
searchLanguagePreference.setSummary(
|
|
||||||
defaultPreferences.getString(SEARCH_LANGUAGE_PREFERENCE,
|
|
||||||
getString(R.string.default_language_value)));
|
|
||||||
downloadPathPreference.setSummary(
|
|
||||||
defaultPreferences.getString(DOWNLOAD_PATH_PREFERENCE,
|
|
||||||
getString(R.string.download_path_summary)));
|
|
||||||
downloadPathAudioPreference.setSummary(
|
|
||||||
defaultPreferences.getString(DOWNLOAD_PATH_AUDIO_PREFERENCE,
|
|
||||||
getString(R.string.download_path_audio_summary)));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||||
super.onActivityResult(requestCode, resultCode, data);
|
|
||||||
|
if ((requestCode == R.string.download_path_audio_key
|
||||||
|
|| requestCode == R.string.download_path_key)
|
||||||
|
&& resultCode == Activity.RESULT_OK) {
|
||||||
|
|
||||||
|
Uri uri = null;
|
||||||
|
if (data.getBooleanExtra(FilePickerActivity.EXTRA_ALLOW_MULTIPLE, false)) {
|
||||||
|
// For JellyBean and above
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
||||||
|
ClipData clip = data.getClipData();
|
||||||
|
|
||||||
|
if (clip != null) {
|
||||||
|
for (int i = 0; i < clip.getItemCount(); i++) {
|
||||||
|
uri = clip.getItemAt(i).getUri();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// For Ice Cream Sandwich
|
||||||
|
} else {
|
||||||
|
ArrayList<String> paths = data.getStringArrayListExtra
|
||||||
|
(FilePickerActivity.EXTRA_PATHS);
|
||||||
|
|
||||||
|
if (paths != null) {
|
||||||
|
for (String path: paths) {
|
||||||
|
uri = Uri.parse(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
uri = data.getData();
|
||||||
|
}
|
||||||
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||||
|
|
||||||
|
//requestCode is equal to R.string.download_path_key or
|
||||||
|
//R.string.download_path_audio_key
|
||||||
|
String key = getString(requestCode);
|
||||||
|
String path = data.getData().toString().substring(7);
|
||||||
|
prefs.edit()
|
||||||
|
.putString(key, path)
|
||||||
|
.commit();
|
||||||
|
}
|
||||||
|
else if(requestCode == REQUEST_INSTALL_ORBOT)
|
||||||
|
{
|
||||||
// try to start tor regardless of resultCode since clicking back after
|
// try to start tor regardless of resultCode since clicking back after
|
||||||
// installing the app does not necessarily return RESULT_OK
|
// installing the app does not necessarily return RESULT_OK
|
||||||
App.configureTor(requestCode == REQUEST_INSTALL_ORBOT
|
App.configureTor(requestCode == REQUEST_INSTALL_ORBOT
|
||||||
&& OrbotHelper.requestStartTor(this));
|
&& OrbotHelper.requestStartTor(this));
|
||||||
|
|
||||||
|
}
|
||||||
|
super.onActivityResult(requestCode, resultCode, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -0,0 +1,167 @@
|
||||||
|
package org.schabi.newpipe;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.preference.CheckBoxPreference;
|
||||||
|
import android.preference.ListPreference;
|
||||||
|
import android.preference.Preference;
|
||||||
|
import android.preference.PreferenceFragment;
|
||||||
|
import android.preference.PreferenceManager;
|
||||||
|
import android.preference.PreferenceScreen;
|
||||||
|
|
||||||
|
import com.nononsenseapps.filepicker.FilePickerActivity;
|
||||||
|
|
||||||
|
import info.guardianproject.netcipher.proxy.OrbotHelper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by david on 15/06/16.
|
||||||
|
*/
|
||||||
|
public class SettingsFragment extends PreferenceFragment
|
||||||
|
implements SharedPreferences.OnSharedPreferenceChangeListener
|
||||||
|
{
|
||||||
|
SharedPreferences.OnSharedPreferenceChangeListener prefListener;
|
||||||
|
|
||||||
|
// get keys
|
||||||
|
String DEFAULT_RESOLUTION_PREFERENCE;
|
||||||
|
String DEFAULT_AUDIO_FORMAT_PREFERENCE;
|
||||||
|
String SEARCH_LANGUAGE_PREFERENCE;
|
||||||
|
String DOWNLOAD_PATH_PREFERENCE;
|
||||||
|
String DOWNLOAD_PATH_AUDIO_PREFERENCE;
|
||||||
|
String USE_TOR_KEY;
|
||||||
|
|
||||||
|
private ListPreference defaultResolutionPreference;
|
||||||
|
private ListPreference defaultAudioFormatPreference;
|
||||||
|
private ListPreference searchLanguagePreference;
|
||||||
|
private Preference downloadPathPreference;
|
||||||
|
private Preference downloadPathAudioPreference;
|
||||||
|
private CheckBoxPreference useTorCheckBox;
|
||||||
|
private SharedPreferences defaultPreferences;
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
addPreferencesFromResource(R.xml.settings);
|
||||||
|
|
||||||
|
final Activity activity = getActivity();
|
||||||
|
|
||||||
|
defaultPreferences = PreferenceManager.getDefaultSharedPreferences(activity);
|
||||||
|
|
||||||
|
// get keys
|
||||||
|
DEFAULT_RESOLUTION_PREFERENCE = getString(R.string.default_resolution_key);
|
||||||
|
DEFAULT_AUDIO_FORMAT_PREFERENCE = getString(R.string.default_audio_format_key);
|
||||||
|
SEARCH_LANGUAGE_PREFERENCE = getString(R.string.search_language_key);
|
||||||
|
DOWNLOAD_PATH_PREFERENCE = getString(R.string.download_path_key);
|
||||||
|
DOWNLOAD_PATH_AUDIO_PREFERENCE = getString(R.string.download_path_audio_key);
|
||||||
|
USE_TOR_KEY = getString(R.string.use_tor_key);
|
||||||
|
|
||||||
|
// get pref objects
|
||||||
|
defaultResolutionPreference =
|
||||||
|
(ListPreference) findPreference(DEFAULT_RESOLUTION_PREFERENCE);
|
||||||
|
defaultAudioFormatPreference =
|
||||||
|
(ListPreference) findPreference(DEFAULT_AUDIO_FORMAT_PREFERENCE);
|
||||||
|
searchLanguagePreference =
|
||||||
|
(ListPreference) findPreference(SEARCH_LANGUAGE_PREFERENCE);
|
||||||
|
downloadPathPreference = findPreference(DOWNLOAD_PATH_PREFERENCE);
|
||||||
|
downloadPathAudioPreference = findPreference(DOWNLOAD_PATH_AUDIO_PREFERENCE);
|
||||||
|
useTorCheckBox = (CheckBoxPreference) findPreference(USE_TOR_KEY);
|
||||||
|
|
||||||
|
prefListener = new SharedPreferences.OnSharedPreferenceChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
|
||||||
|
String key) {
|
||||||
|
Activity a = getActivity();
|
||||||
|
if(a == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (key == USE_TOR_KEY)
|
||||||
|
{
|
||||||
|
updateSummary();
|
||||||
|
|
||||||
|
if (defaultPreferences.getBoolean(USE_TOR_KEY, false)) {
|
||||||
|
if (OrbotHelper.isOrbotInstalled(a)) {
|
||||||
|
App.configureTor(true);
|
||||||
|
OrbotHelper.requestStartTor(a);
|
||||||
|
} else {
|
||||||
|
Intent intent = OrbotHelper.getOrbotInstallIntent(a);
|
||||||
|
a.startActivityForResult(intent, SettingsActivity.REQUEST_INSTALL_ORBOT);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
App.configureTor(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (key == DOWNLOAD_PATH_PREFERENCE)
|
||||||
|
{
|
||||||
|
String downloadPath = sharedPreferences
|
||||||
|
.getString(DOWNLOAD_PATH_PREFERENCE,
|
||||||
|
getString(R.string.download_path_summary));
|
||||||
|
downloadPathPreference
|
||||||
|
.setSummary(downloadPath);
|
||||||
|
}
|
||||||
|
else if (key == DOWNLOAD_PATH_AUDIO_PREFERENCE)
|
||||||
|
{
|
||||||
|
String downloadPath = sharedPreferences
|
||||||
|
.getString(DOWNLOAD_PATH_AUDIO_PREFERENCE,
|
||||||
|
getString(R.string.download_path_audio_summary));
|
||||||
|
downloadPathAudioPreference
|
||||||
|
.setSummary(downloadPath);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
defaultPreferences.registerOnSharedPreferenceChangeListener(prefListener);
|
||||||
|
|
||||||
|
updateSummary();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) {
|
||||||
|
|
||||||
|
if(preference.getKey() == downloadPathPreference.getKey() ||
|
||||||
|
preference.getKey() == downloadPathAudioPreference.getKey())
|
||||||
|
{
|
||||||
|
Activity activity = getActivity();
|
||||||
|
Intent i = new Intent(activity, FilePickerActivity.class);
|
||||||
|
|
||||||
|
i.putExtra(FilePickerActivity.EXTRA_ALLOW_MULTIPLE, false);
|
||||||
|
i.putExtra(FilePickerActivity.EXTRA_ALLOW_CREATE_DIR, true);
|
||||||
|
i.putExtra(FilePickerActivity.EXTRA_MODE, FilePickerActivity.MODE_DIR);
|
||||||
|
if(preference.getKey() == downloadPathPreference.getKey())
|
||||||
|
{
|
||||||
|
activity.startActivityForResult(i, R.string.download_path_key);
|
||||||
|
}
|
||||||
|
else if (preference.getKey() == downloadPathAudioPreference.getKey())
|
||||||
|
{
|
||||||
|
activity.startActivityForResult(i, R.string.download_path_audio_key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onPreferenceTreeClick(preferenceScreen, preference);
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is used to show the status of some preference in the description
|
||||||
|
private void updateSummary() {
|
||||||
|
defaultResolutionPreference.setSummary(
|
||||||
|
defaultPreferences.getString(DEFAULT_RESOLUTION_PREFERENCE,
|
||||||
|
getString(R.string.default_resolution_value)));
|
||||||
|
defaultAudioFormatPreference.setSummary(
|
||||||
|
defaultPreferences.getString(DEFAULT_AUDIO_FORMAT_PREFERENCE,
|
||||||
|
getString(R.string.default_audio_format_value)));
|
||||||
|
searchLanguagePreference.setSummary(
|
||||||
|
defaultPreferences.getString(SEARCH_LANGUAGE_PREFERENCE,
|
||||||
|
getString(R.string.default_language_value)));
|
||||||
|
downloadPathPreference.setSummary(
|
||||||
|
defaultPreferences.getString(DOWNLOAD_PATH_PREFERENCE,
|
||||||
|
getString(R.string.download_path_summary)));
|
||||||
|
downloadPathAudioPreference.setSummary(
|
||||||
|
defaultPreferences.getString(DOWNLOAD_PATH_AUDIO_PREFERENCE,
|
||||||
|
getString(R.string.download_path_audio_summary)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -49,4 +49,24 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- You can also inherit from NNF_BaseTheme.Light -->
|
||||||
|
<style name="FilePickerTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||||
|
<!-- Set these to match your theme -->
|
||||||
|
<item name="colorPrimary">@color/light_youtube_primary_color</item>
|
||||||
|
<item name="colorPrimaryDark">@color/light_youtube_dark_color</item>
|
||||||
|
<item name="colorAccent">@color/light_youtube_accent_color</item>
|
||||||
|
|
||||||
|
<!-- Need to set this also to style create folder dialog -->
|
||||||
|
<item name="alertDialogTheme">@style/FilePickerAlertDialogTheme</item>
|
||||||
|
|
||||||
|
<!-- If you want to set a specific toolbar theme, do it here -->
|
||||||
|
<!-- <item name="nnf_toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> -->
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="FilePickerAlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
|
||||||
|
<item name="colorPrimary">@color/light_youtube_primary_color</item>
|
||||||
|
<item name="colorPrimaryDark">@color/light_youtube_dark_color</item>
|
||||||
|
<item name="colorAccent">@color/light_youtube_accent_color</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -92,13 +92,13 @@
|
||||||
android:title="@string/settings_category_other_title"
|
android:title="@string/settings_category_other_title"
|
||||||
android:textAllCaps="true">
|
android:textAllCaps="true">
|
||||||
|
|
||||||
<EditTextPreference
|
<Preference
|
||||||
android:key="@string/download_path_key"
|
android:key="@string/download_path_key"
|
||||||
android:title="@string/download_path_title"
|
android:title="@string/download_path_title"
|
||||||
android:summary="@string/download_path_summary"
|
android:summary="@string/download_path_summary"
|
||||||
android:dialogTitle="@string/download_path_dialog_title" />
|
android:dialogTitle="@string/download_path_dialog_title" />
|
||||||
|
|
||||||
<EditTextPreference
|
<Preference
|
||||||
android:key="@string/download_path_audio_key"
|
android:key="@string/download_path_audio_key"
|
||||||
android:title="@string/download_path_audio_title"
|
android:title="@string/download_path_audio_title"
|
||||||
android:summary="@string/download_path_audio_summary"
|
android:summary="@string/download_path_audio_summary"
|
||||||
|
|
Loading…
Reference in New Issue