Methods Summary |
---|
public int | getCallerUid()Gets the request caller Uid.
return mCallerUid;
|
public java.lang.CharSequence | getCharSequenceText()Gets the text which should be synthesized.
return mText;
|
public java.lang.String | getCountry()Gets the ISO 3-letter country code for the language to use.
return mCountry;
|
public java.lang.String | getLanguage()Gets the ISO 3-letter language code for the language to use.
return mLanguage;
|
public android.os.Bundle | getParams()Gets the additional params, if any.
return mParams;
|
public int | getPitch()Gets the pitch to use. The normal pitch is 100.
return mPitch;
|
public int | getSpeechRate()Gets the speech rate to use. The normal rate is 100.
return mSpeechRate;
|
public java.lang.String | getText()Gets the text which should be synthesized.
return mText.toString();
|
public java.lang.String | getVariant()Gets the language variant to use.
return mVariant;
|
public java.lang.String | getVoiceName()Gets the name of the voice to use.
return mVoiceName;
|
void | setCallerUid(int uid)Sets Caller Uid
mCallerUid = uid;
|
void | setLanguage(java.lang.String language, java.lang.String country, java.lang.String variant)Sets the locale for the request.
mLanguage = language;
mCountry = country;
mVariant = variant;
|
void | setPitch(int pitch)Sets the pitch.
mPitch = pitch;
|
void | setSpeechRate(int speechRate)Sets the speech rate.
mSpeechRate = speechRate;
|
void | setVoiceName(java.lang.String voiceName)Sets the voice name for the request.
mVoiceName = voiceName;
|