save the selected directory and show it as a summary
This commit is contained in:
parent
47ffaf99bd
commit
6cafdcfdc0
1 changed files with 8 additions and 2 deletions
|
@ -46,8 +46,6 @@ public class UserPreference extends AppCompatActivity {
|
|||
final UserPreference callingActivity = (UserPreference) getActivity();
|
||||
final SharedPreferences sharedPreferences = getPreferenceManager().getSharedPreferences();
|
||||
|
||||
addPreferencesFromResource(R.xml.preference);
|
||||
|
||||
Preference keyPref = findPreference("openpgp_key_id_pref");
|
||||
String selectedKeys = sharedPreferences.getString("openpgp_key_ids", "");
|
||||
if (Strings.isNullOrEmpty(selectedKeys)) {
|
||||
|
@ -221,5 +219,13 @@ public class UserPreference extends AppCompatActivity {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// why do they have to use a different resultCode than OK :/
|
||||
if (requestCode == SELECT_GIT_DIRECTORY && resultCode == DirectoryChooserActivity.RESULT_CODE_DIR_SELECTED) {
|
||||
PreferenceManager.getDefaultSharedPreferences(getApplicationContext())
|
||||
.edit()
|
||||
.putString("git_external_repo", data.getStringExtra(DirectoryChooserActivity.RESULT_SELECTED_DIR))
|
||||
.commit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue