blob: 4cf3b10bfb355bc190014ed876a8ecccf09446b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
package de.blinkt.openvpn;
import android.os.Bundle;
import android.preference.PreferenceFragment;
public abstract class OpenVpnPreferencesFragment extends PreferenceFragment {
protected VpnProfile mProfile;
protected abstract void loadSettings();
protected abstract void saveSettings();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String profileUUID = getArguments().getString(getActivity().getPackageName() + ".profileUUID");
mProfile = ProfileManager.get(getActivity(),profileUUID);
getActivity().setTitle(getString(R.string.edit_profile_title, mProfile.getName()));
}
@Override
public void onPause() {
super.onPause();
saveSettings();
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if(savedInstanceState!=null) {
String profileUUID=savedInstanceState.getString(VpnProfile.EXTRA_PROFILEUUID);
mProfile = ProfileManager.get(getActivity(),profileUUID);
loadSettings();
}
}
@Override
public void onStop() {
// TODO Auto-generated method stub
super.onStop();
}
@Override
public void onSaveInstanceState (Bundle outState) {
super.onSaveInstanceState(outState);
saveSettings();
outState.putString(VpnProfile.EXTRA_PROFILEUUID, mProfile.getUUIDString());
}
}
|