diff options
| author | Matthew Fritze <mfritze@google.com> | 2019-01-22 16:42:34 -0800 |
|---|---|---|
| committer | Matthew Fritze <mfritze@google.com> | 2019-01-24 17:03:41 -0800 |
| commit | f8a1ff15e9df06dd6bf4d9e1b75c9bfe8d3a04ba (patch) | |
| tree | 73493b4c100127b12d7da8f94ba8583ebeb928ed /core/java/android | |
| parent | 1fcbf83856daad2a60ccdbbd4d7f5b48f30d5067 (diff) | |
Add NFC Settings Panel API
NFC Panel is the third Settings Panel, which hosts NFC related settings.
Currently the panel only holds the NFC slice, but is open to future
additions.
Test: atest SettingsPanelTest
Bug: 120142616
Change-Id: Ib9e36b6c645ecb8788c558f505197723836f4616
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/Settings.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 2441d42df09c..ed17307f8c09 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -14598,6 +14598,17 @@ public final class Settings { "android.settings.panel.action.INTERNET_CONNECTIVITY"; /** + * Activity Action: Show a settings dialog containing NFC-related settings. + * <p> + * Input: Nothing. + * <p> + * Output: Nothing. + */ + @SdkConstant(SdkConstant.SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_NFC = + "android.settings.panel.action.NFC"; + + /** * Activity Action: Show a settings dialog containing all volume streams. * <p> * Input: Nothing. |
