资讯 社区 文档
技术能力
语音技术
文字识别
人脸与人体
图像技术
语言与知识
视频技术

Alert

此类封装alert相关功能

Public methods
Alert AlertDemo
Demo.
Alert show_dialog(string msg)
显示对话窗
Alert confirm_text(string msg)
设置确定按钮文字
Alert cancel_text(string msg)
设置取消按钮文字
Alert on_confirm(function func)
点击确定按钮后的回调
Alert on_cancel(function func)
点击取消按钮后的回调
Alert show_toast(string msg)
显示toast

AlertDemo

Alert AlertDemo ()

demo示例

sample:
 	Alert():show_dialog("消息内容")
	 	 :title("提示")
	   	 :confirm_text("确认")
	  	 :cancel_text("取消")
     	 :on_confirm(function()
     		ARLOG("Alert confirm")
     	   end)
         :on_cancel(function()
     		ARLOG("Alert cancel")
     	   end)
     	 :show()

   Alert():show_toast("show")

Alert show_dialog(string msg)

显示对话窗

Parameters

  • msg | string : string类型

Alert confirm_text(string msg)

设置确定按钮文字

Parameters

  • msg | string : string类型

Alert cancel_text(string msg)

设置取消按钮文字

Parameters

  • msg | string : string类型

Alert on_confirm(function func)

点击确定按钮后的回调

Parameters

  • func | function : function类型

Alert on_cancel(function func)

点击取消按钮后的回调

Parameters

  • func | function : function类型

Alert show_toast(string msg)

显示toast

Parameters

  • msg | string : string类型

demo示例

sample:
	Alert():show_toast("你好")
上一篇
SingleAbility
下一篇
物体识别