HomeSort by relevance Sort by last modified time
    Searched full:earcon (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/speech/tts/
ITts.aidl 52 int playEarcon(in String callingApp, in String earcon, in int queueMode, in String[] params);
54 void addEarcon(in String callingApp, in String earcon, in String packageName, in int resId);
56 void addEarconFile(in String callingApp, in String earcon, in String filename);
TextToSpeech.java 608 * @param earcon The name of the earcon.
627 public int addEarcon(String earcon, String packagename, int resourceId) {
633 mITts.addEarcon(mPackageName, earcon, packagename, resourceId);
665 * @param earcon
666 * The name of the earcon.
674 public int addEarcon(String earcon, String filename) {
680 mITts.addEarconFile(mPackageName, earcon, filename);
775 * Plays the earcon using the specified queueing mode and parameters.
777 * @param earcon
    [all...]
  /frameworks/base/packages/TtsService/src/android/tts/
TtsService.java 62 public static final int EARCON = 1;
460 * Adds a sound resource to the TTS as an earcon.
462 * @param earcon
469 private void addEarcon(String callingApp, String earcon, String packageName, int resId) {
470 mEarcons.put(earcon, new SoundResource(packageName, resId));
474 * Adds a sound resource to the TTS as an earcon.
476 * @param earcon
482 private void addEarcon(String callingApp, String earcon, String filename) {
483 mEarcons.put(earcon, new SoundResource(filename));
513 * Plays the earcon using the specified queueing mode and parameters
    [all...]
  /development/samples/AccessibilityService/src/com/example/android/clockback/
ClockBackService.java 108 /** Play an earcon. */
111 /** Stop playing an earcon. */
243 /** Mapping from integers to earcon names - dynamically populated. */
495 // Use only an earcon to announce ringer state change.
505 // Use only an earcon to announce ringer state change.
513 // Use only an earcon to announce ringer state change.
685 * Plays an earcon given its id.
687 * @param earconId The id of the earcon to be played.

Completed in 938 milliseconds