App Inventor 2 指令中文化 通知 notifier元件

notifier 通知

通知元件可在程式中顯示特定的警示訊息。通知可讓使用者與設計者知道程式是否發生變化或錯誤。您可自由調整通知的背景顏色與顯示的文字顏色。


屬性

BackgroundColor ­
Set notifier1.BackgroundColor :設定通知的背景顏色。


TextColor 
設定文字顏色。

Set notifier.TextColor設定 notifier  的文字顏色。
notifier.Text Color:取得 notifier  現在的文字顏色。  


call notifier.LogError
call notifier.LogError : 顯示錯誤訊息


call notifier.LogInfo
call notifier.LogInfo : 顯示一般提示性的消息information 


call notifier.LogWarning
call notifier.LogWarning : 顯示警告訊息


call notifier.ShowAlert
call notifier.ShowAlert : 顯示一個暫時性的通知視窗


call notifier.ShowChooseDialog
call notifier.ShowChooseDialog : 顯示一個可以選擇的通知視窗, cancelable 表示是否會有cancel 按鈕 (boolean),當使用者按下選擇的按鈕,將會觸發 AfterChooseing() 的事件


call notifier.ShowTextDialog
call notifier.ShowTextDialog : 顯示一個可以輸入文字的通知視窗,cancelable 表示是否會有cancel 按鈕 (boolean),當使用者輸入文字,將會觸發 AfetrTextInput() 的事件


call notifier.ShowMessageDialog
call notifier.ShowMessageDialog : 顯示一個只有一個按鈕的通知視窗,當使用者按下按鈕,將會關閉此通知



事件

AfterChooseing()
AfterChooseing() : 使用者點選 notifier 中某按鈕完成後呼叫本事件。


AfetrTextInput()
AfetrTextInput() : 使用者在 notifier 中輸入文字完成後呼叫本事件。