-
Notifications
You must be signed in to change notification settings - Fork 306
/
Copy pathPreferencesActivity.java
88 lines (69 loc) · 3.23 KB
/
PreferencesActivity.java
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.automattic.simplenote;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
import androidx.appcompat.widget.Toolbar;
import androidx.fragment.app.FragmentManager;
import androidx.preference.Preference;
import com.automattic.simplenote.utils.BrowserUtils;
import org.wordpress.passcodelock.PasscodePreferenceFragment;
import org.wordpress.passcodelock.PasscodePreferenceFragmentCompat;
import static com.automattic.simplenote.PreferencesFragment.WEB_APP_URL;
import static com.automattic.simplenote.utils.DisplayUtils.disableScreenshotsIfLocked;
import dagger.hilt.android.AndroidEntryPoint;
@AndroidEntryPoint
public class PreferencesActivity extends ThemedAppCompatActivity {
private PasscodePreferenceFragmentCompat mPasscodePreferenceFragment;
private PreferencesFragment mPreferencesFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_preferences);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
setTitle(R.string.settings);
if (getSupportActionBar() != null) {
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}
String preferencesTag = "tag_preferences";
String passcodeTag = "tag_passcode";
if (savedInstanceState == null) {
Bundle passcodeArgs = new Bundle();
passcodeArgs.putBoolean(PasscodePreferenceFragment.KEY_SHOULD_INFLATE, false);
mPasscodePreferenceFragment = new PasscodePreferenceFragmentCompat();
mPasscodePreferenceFragment.setArguments(passcodeArgs);
mPreferencesFragment = new PreferencesFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.preferences_container, mPreferencesFragment, preferencesTag)
.add(R.id.preferences_container, mPasscodePreferenceFragment, passcodeTag)
.commit();
} else {
FragmentManager fragmentManager = getSupportFragmentManager();
mPreferencesFragment = (PreferencesFragment) fragmentManager.findFragmentByTag(preferencesTag);
mPasscodePreferenceFragment = (PasscodePreferenceFragmentCompat) fragmentManager.findFragmentByTag(passcodeTag);
}
}
@Override
public void onStart() {
super.onStart();
Preference togglePref =
mPreferencesFragment.findPreference(getString(R.string.pref_key_passcode_toggle));
Preference changePref =
mPreferencesFragment.findPreference(getString(R.string.pref_key_change_passcode));
if (togglePref != null && changePref != null) {
mPasscodePreferenceFragment.setPreferences(togglePref, changePref);
}
}
@Override
protected void onResume() {
super.onResume();
disableScreenshotsIfLocked(this);
}
public void openBrowserForMembership(View view) {
try {
BrowserUtils.launchBrowserOrShowError(PreferencesActivity.this, WEB_APP_URL);
} catch (Exception e) {
Toast.makeText(PreferencesActivity.this, R.string.no_browser_available, Toast.LENGTH_LONG).show();
}
}
}