parent
f6a4510659
commit
00f4242fa4
@ -1,6 +1,7 @@
|
|||||||
package com.topjohnwu.magisk;
|
package com.topjohnwu.magisk;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.content.SharedPreferences;
|
||||||
import android.content.pm.PackageManager;
|
import android.content.pm.PackageManager;
|
||||||
import android.hardware.fingerprint.FingerprintManager;
|
import android.hardware.fingerprint.FingerprintManager;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
@ -42,6 +43,7 @@ public class SuRequestActivity extends BaseActivity {
|
|||||||
private Policy policy;
|
private Policy policy;
|
||||||
private CountDownTimer timer;
|
private CountDownTimer timer;
|
||||||
private FingerprintHelper fingerprintHelper;
|
private FingerprintHelper fingerprintHelper;
|
||||||
|
private SharedPreferences timeoutPrefs;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getDarkTheme() {
|
public int getDarkTheme() {
|
||||||
@ -73,6 +75,7 @@ public class SuRequestActivity extends BaseActivity {
|
|||||||
|
|
||||||
PackageManager pm = getPackageManager();
|
PackageManager pm = getPackageManager();
|
||||||
app.mDB.clearOutdated();
|
app.mDB.clearOutdated();
|
||||||
|
timeoutPrefs = getSharedPreferences("su_timeout", 0);
|
||||||
|
|
||||||
// Get policy
|
// Get policy
|
||||||
Intent intent = getIntent();
|
Intent intent = getIntent();
|
||||||
@ -132,6 +135,7 @@ public class SuRequestActivity extends BaseActivity {
|
|||||||
R.array.allow_timeout, android.R.layout.simple_spinner_item);
|
R.array.allow_timeout, android.R.layout.simple_spinner_item);
|
||||||
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
||||||
timeout.setAdapter(adapter);
|
timeout.setAdapter(adapter);
|
||||||
|
timeout.setSelection(timeoutPrefs.getInt(policy.packageName, 0));
|
||||||
|
|
||||||
timer = new CountDownTimer((int) Config.get(Config.Key.SU_REQUEST_TIMEOUT) * 1000, 1000) {
|
timer = new CountDownTimer((int) Config.get(Config.Key.SU_REQUEST_TIMEOUT) * 1000, 1000) {
|
||||||
@Override
|
@Override
|
||||||
@ -209,7 +213,9 @@ public class SuRequestActivity extends BaseActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void handleAction(int action) {
|
private void handleAction(int action) {
|
||||||
handleAction(action, Config.Value.TIMEOUT_LIST[timeout.getSelectedItemPosition()]);
|
int pos = timeout.getSelectedItemPosition();
|
||||||
|
timeoutPrefs.edit().putInt(policy.packageName, pos).apply();
|
||||||
|
handleAction(action, Config.Value.TIMEOUT_LIST[pos]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleAction(int action, int time) {
|
private void handleAction(int action, int time) {
|
||||||
|
Loading…
Reference in New Issue
Block a user