diff options
| -rw-r--r-- | api/current.txt | 1 | ||||
| -rw-r--r-- | core/java/android/provider/Settings.java | 11 | ||||
| -rw-r--r-- | core/proto/android/app/settings_enums.proto | 3 | ||||
| -rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 3 |
4 files changed, 18 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 9c3ec382e2f2..c7520b7beff3 100644 --- a/api/current.txt +++ b/api/current.txt @@ -38954,6 +38954,7 @@ package android.provider { field public static final String ACTION_INTERNET_CONNECTIVITY = "android.settings.panel.action.INTERNET_CONNECTIVITY"; field public static final String ACTION_NFC = "android.settings.panel.action.NFC"; field public static final String ACTION_VOLUME = "android.settings.panel.action.VOLUME"; + field public static final String ACTION_WIFI = "android.settings.panel.action.WIFI"; } public static final class Settings.Secure extends android.provider.Settings.NameValueTable { diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 2b9dff299b84..dc08d5d8c8a4 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -14965,6 +14965,17 @@ public final class Settings { "android.settings.panel.action.NFC"; /** + * Activity Action: Show a settings dialog containing controls for Wifi. + * <p> + * Input: Nothing. + * <p> + * Output: Nothing. + */ + @SdkConstant(SdkConstant.SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_WIFI = + "android.settings.panel.action.WIFI"; + + /** * Activity Action: Show a settings dialog containing all volume streams. * <p> * Input: Nothing. diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 445075da7f90..927c85f2db8e 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -2299,4 +2299,7 @@ enum PageId { // Open: Settings will show the conditional when Grayscale mode is on SETTINGS_CONDITION_GRAYSCALE_MODE = 1683; + + // Panel for Wifi + PANEL_WIFI = 1687; } diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 91b161d3192f..9673a84018e4 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -7087,6 +7087,9 @@ message MetricsEvent { //ACTION: Log result for each card's eligibility check ACTION_CONTEXTUAL_CARD_ELIGIBILITY = 1686; + // Panel for Wifi + PANEL_WIFI = 1687; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS |