Home | History | Annotate | Download | only in phone

Lines Matching refs:tone

92     /** The DTMF tone volume relative to other sounds in the stream */
220 // a local audio signal, and is not as important as the dtmf tone itself.
226 Log.w(LOG_TAG, "Exception caught while creating local tone generator: " + e);
484 // retrieve the DTMF tone play back setting.
492 // a local audio signal, and is not as important as the dtmf tone itself.
499 Log.w(LOG_TAG, "Exception caught while creating local tone generator: " + e);
559 * Plays the specified tone for TONE_LENGTH_MS milliseconds.
561 * The tone is played locally, using the audio stream for phone calls.
565 * @param tone a tone code from {@link ToneGenerator}
567 void playTone(int tone) {
568 // if local tone playback is disabled, just return.
587 Log.w(LOG_TAG, "playTone: mToneGenerator == null, tone: " + tone);
591 // Start the new tone (will stop any playing tone)
592 mToneGenerator.startTone(tone, TONE_LENGTH_MS);