Loading res/xml/development_prefs.xml +5 −0 Original line number Diff line number Diff line Loading @@ -423,6 +423,11 @@ android:title="@string/show_all_anrs" android:summary="@string/show_all_anrs_summary"/> <SwitchPreference android:key="show_notification_channel_warnings" android:title="@string/show_notification_channel_warnings" android:summary="@string/show_notification_channel_warnings_summary"/> <Preference android:key="inactive_apps" android:title="@string/inactive_apps_title" Loading src/com/android/settings/development/DevelopmentSettings.java +25 −0 Original line number Diff line number Diff line Loading @@ -226,6 +226,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment private static final String SHOW_ALL_ANRS_KEY = "show_all_anrs"; private static final String SHOW_NOTIFICATION_CHANNEL_WARNINGS_KEY = "show_notification_channel_warnings"; private static final String TERMINAL_APP_PACKAGE = "com.android.terminal"; private static final String KEY_CONVERT_FBE = "convert_to_file_encryption"; Loading Loading @@ -326,6 +328,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment private SwitchPreference mShowAllANRs; private SwitchPreference mShowNotificationChannelWarnings; private ColorModePreference mColorModePreference; private SwitchPreference mForceResizable; Loading Loading @@ -523,6 +527,11 @@ public class DevelopmentSettings extends RestrictedSettingsFragment mAllPrefs.add(mShowAllANRs); mResetSwitchPrefs.add(mShowAllANRs); mShowNotificationChannelWarnings = (SwitchPreference) findPreference( SHOW_NOTIFICATION_CHANNEL_WARNINGS_KEY); mAllPrefs.add(mShowNotificationChannelWarnings); mResetSwitchPrefs.add(mShowNotificationChannelWarnings); Preference hdcpChecking = findPreference(HDCP_CHECKING_KEY); if (hdcpChecking != null) { mAllPrefs.add(hdcpChecking); Loading Loading @@ -788,6 +797,7 @@ public class DevelopmentSettings extends RestrictedSettingsFragment updateImmediatelyDestroyActivitiesOptions(); updateAppProcessLimitOptions(); updateShowAllANRsOptions(); updateShowNotificationChannelWarningsOptions(); mVerifyAppsOverUsbController.updatePreference(); updateOtaDisableAutomaticUpdateOptions(); updateBugreportOptions(); Loading Loading @@ -2268,6 +2278,19 @@ public class DevelopmentSettings extends RestrictedSettingsFragment getActivity().getContentResolver(), Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0); } private void writeShowNotificationChannelWarningsOptions() { Settings.Global.putInt(getActivity().getContentResolver(), Settings.Global.SHOW_NOTIFICATION_CHANNEL_WARNINGS, mShowNotificationChannelWarnings.isChecked() ? 1 : 0); } private void updateShowNotificationChannelWarningsOptions() { final int defaultWarningEnabled = Build.IS_DEBUGGABLE ? 1 : 0; updateSwitchPreference(mShowNotificationChannelWarnings, Settings.Global.getInt( getActivity().getContentResolver(), Settings.Global.SHOW_NOTIFICATION_CHANNEL_WARNINGS, defaultWarningEnabled) != 0); } private void confirmEnableOemUnlock() { DialogInterface.OnClickListener onClickListener = new DialogInterface.OnClickListener() { @Override Loading Loading @@ -2454,6 +2477,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment writeImmediatelyDestroyActivitiesOptions(); } else if (preference == mShowAllANRs) { writeShowAllANRsOptions(); } else if (preference == mShowNotificationChannelWarnings) { writeShowNotificationChannelWarningsOptions(); } else if (preference == mForceHardwareUi) { writeHardwareUiOptions(); } else if (preference == mForceMsaa) { Loading Loading
res/xml/development_prefs.xml +5 −0 Original line number Diff line number Diff line Loading @@ -423,6 +423,11 @@ android:title="@string/show_all_anrs" android:summary="@string/show_all_anrs_summary"/> <SwitchPreference android:key="show_notification_channel_warnings" android:title="@string/show_notification_channel_warnings" android:summary="@string/show_notification_channel_warnings_summary"/> <Preference android:key="inactive_apps" android:title="@string/inactive_apps_title" Loading
src/com/android/settings/development/DevelopmentSettings.java +25 −0 Original line number Diff line number Diff line Loading @@ -226,6 +226,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment private static final String SHOW_ALL_ANRS_KEY = "show_all_anrs"; private static final String SHOW_NOTIFICATION_CHANNEL_WARNINGS_KEY = "show_notification_channel_warnings"; private static final String TERMINAL_APP_PACKAGE = "com.android.terminal"; private static final String KEY_CONVERT_FBE = "convert_to_file_encryption"; Loading Loading @@ -326,6 +328,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment private SwitchPreference mShowAllANRs; private SwitchPreference mShowNotificationChannelWarnings; private ColorModePreference mColorModePreference; private SwitchPreference mForceResizable; Loading Loading @@ -523,6 +527,11 @@ public class DevelopmentSettings extends RestrictedSettingsFragment mAllPrefs.add(mShowAllANRs); mResetSwitchPrefs.add(mShowAllANRs); mShowNotificationChannelWarnings = (SwitchPreference) findPreference( SHOW_NOTIFICATION_CHANNEL_WARNINGS_KEY); mAllPrefs.add(mShowNotificationChannelWarnings); mResetSwitchPrefs.add(mShowNotificationChannelWarnings); Preference hdcpChecking = findPreference(HDCP_CHECKING_KEY); if (hdcpChecking != null) { mAllPrefs.add(hdcpChecking); Loading Loading @@ -788,6 +797,7 @@ public class DevelopmentSettings extends RestrictedSettingsFragment updateImmediatelyDestroyActivitiesOptions(); updateAppProcessLimitOptions(); updateShowAllANRsOptions(); updateShowNotificationChannelWarningsOptions(); mVerifyAppsOverUsbController.updatePreference(); updateOtaDisableAutomaticUpdateOptions(); updateBugreportOptions(); Loading Loading @@ -2268,6 +2278,19 @@ public class DevelopmentSettings extends RestrictedSettingsFragment getActivity().getContentResolver(), Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0); } private void writeShowNotificationChannelWarningsOptions() { Settings.Global.putInt(getActivity().getContentResolver(), Settings.Global.SHOW_NOTIFICATION_CHANNEL_WARNINGS, mShowNotificationChannelWarnings.isChecked() ? 1 : 0); } private void updateShowNotificationChannelWarningsOptions() { final int defaultWarningEnabled = Build.IS_DEBUGGABLE ? 1 : 0; updateSwitchPreference(mShowNotificationChannelWarnings, Settings.Global.getInt( getActivity().getContentResolver(), Settings.Global.SHOW_NOTIFICATION_CHANNEL_WARNINGS, defaultWarningEnabled) != 0); } private void confirmEnableOemUnlock() { DialogInterface.OnClickListener onClickListener = new DialogInterface.OnClickListener() { @Override Loading Loading @@ -2454,6 +2477,8 @@ public class DevelopmentSettings extends RestrictedSettingsFragment writeImmediatelyDestroyActivitiesOptions(); } else if (preference == mShowAllANRs) { writeShowAllANRsOptions(); } else if (preference == mShowNotificationChannelWarnings) { writeShowNotificationChannelWarningsOptions(); } else if (preference == mForceHardwareUi) { writeHardwareUiOptions(); } else if (preference == mForceMsaa) { Loading