diff options
author | Selim Cinek <cinek@google.com> | 2015-04-24 16:46:13 -0700 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2015-05-05 14:52:52 -0700 |
commit | e70d6535237d2e6f03adcd0bdc11e45ea714dc97 (patch) | |
tree | 342b22ff5e17567563e008f2b684bfcd3ba3f932 /core/res | |
parent | 08e474ca24c024be29ed8a593cbd2748abde44ce (diff) | |
download | frameworks_base-e70d6535237d2e6f03adcd0bdc11e45ea714dc97.zip frameworks_base-e70d6535237d2e6f03adcd0bdc11e45ea714dc97.tar.gz frameworks_base-e70d6535237d2e6f03adcd0bdc11e45ea714dc97.tar.bz2 |
The voice assist may now be launched above the lockscreen
A possibility was introduced to launch voice assist over
the lockscreen using the left keyguard affordance.
Change-Id: Ic4618d24256b65441a50d77d0ef59b0ec99b6ead
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/res/values/attrs.xml | 3 | ||||
-rw-r--r-- | core/res/res/values/public.xml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index fe5862b..2914817 100644 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -7306,6 +7306,9 @@ <!-- Flag indicating whether this voice interaction service is capable of handling the assist action. --> <attr name="supportsAssist" format="boolean" /> + <!-- Flag indicating whether this voice interaction service is capable of being launched + from the keyguard. --> + <attr name="supportsLaunchVoiceAssistFromKeyguard" format="boolean" /> </declare-styleable> <!-- Use <code>voice-enrollment-application</code> diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index 91c3d2e..83ac6c1 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -2685,4 +2685,5 @@ <public type="attr" name="assistBlocked" /> <public type="attr" name="stylusButtonPressable" /> + <public type="attr" name="supportsLaunchVoiceAssistFromKeyguard" /> </resources> |