QSL4A Documentation of makeToast  <QSL4A API Menu>
makeToast(message,length=makeToast.SHORT,isHtml=False,backColor=None,textColor=None,textSize=0,textAlign=0)
Displays a Toast notification.
    message (String)
    length  (Integer Optional) SHORT is 2 second , LONG is 3.5 second
    isHtml  (Boolean Optional) Indicates that the message is html, the values are True (HTML, HyperText Markup Language) / False (Default, Plain Text with new Toast) / None (Plain Text with original Toast, Background support)
    If isHtml is not None, you can also use these parameters, but not support Background:
    backColor (String Optional) default is 'efefefef'
    textColor (String Optional) default is 'ff000000'
    textSize (Interger Optional) default determined by the system
    textAlign (Interger Optional) default determined by the system


makeToast.SHORT = 0   # 2.0 seconds
makeToast.LONG  = 1   # 3.5 seconds
makeToast.TEXT_ALIGNMENT_INHERIT    = 0
makeToast.TEXT_ALIGNMENT_GRAVITY    = 1
makeToast.TEXT_ALIGNMENT_TEXT_START = 2
makeToast.TEXT_ALIGNMENT_TEXT_END   = 3
makeToast.TEXT_ALIGNMENT_CENTER     = 4
makeToast.TEXT_ALIGNMENT_VIEW_START = 5
makeToast.TEXT_ALIGNMENT_VIEW_END   = 6