Searched defs:voicePrompts (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
H A DVoiceInteractor.java782 * @param voicePrompts An array of one or more voice prompts. Must not be empty or null.
785 public Prompt(@NonNull CharSequence[] voicePrompts, @NonNull CharSequence visualPrompt) { argument
786 if (voicePrompts == null) {
787 throw new NullPointerException("voicePrompts must not be null");
789 if (voicePrompts.length == 0) {
790 throw new IllegalArgumentException("voicePrompts must not be empty");
795 this.mVoicePrompts = voicePrompts;

Completed in 99 milliseconds