其他分享
首页 > 其他分享> > SAP UI5 里的 Busy Indicator 控件使用概述

SAP UI5 里的 Busy Indicator 控件使用概述

作者:互联网

这个 SAP UI5 控件的命名控件:sap.m.BusyIndicator

Busy Indicator 表示正在进行某些操作并且用户必须等待。 它不会阻塞当前的 UI 屏幕,因此可以并行触发其他操作。

这个控件提示用户,当前应用的后台正在执行某种操作。

开发人员可以设置图标的大小、文本,还可以定义一个自定义图标来代替使用。

Busy Indicator 的使用场景:

Busy Indicator 不太适应的场合:

看一个例子:

实现源代码:

<mvc:View
	xmlns:l="sap.ui.layout"
	xmlns:mvc="sap.ui.core.mvc"
	xmlns="sap.m">
	<l:VerticalLayout class="sapUiContentPadding" width="100%">
		<BusyIndicator text="... something is happening" class="sapUiTinyMarginBottom" />
		<HBox justifyContent="Start" alignItems="Center">
			<BusyIndicator size="3em" />
		</HBox>
		<BusyIndicator size="1.6rem" class="sapUiMediumMarginBegin" />
	</l:VerticalLayout>
</mvc:View>

manifest.json 文件的内容:

{
	"sap.app": {
		"id": "sap.m.sample.BusyIndicator",
		"applicationVersion": {
			"version": "1.0.0"
		}
	},
	"sap.ui5": {
		"rootView": {
			"viewName": "sap.m.sample.BusyIndicator.V",
			"type": "XML",
			"async": true
		},
		"dependencies": {
			"libs": {
				"sap.ui.core": {},
				"sap.m": {},
				"sap.ui.layout": {}
			}
		},
		"config": {
			"sample": {
				"stretch": true,
				"files": [
					"V.view.xml",
					"manifest.json"
				]
			}
		}
	}
}

值得一提的构造函数参数

标签:控件,Indicator,Busy,BusyIndicator,sap,SAP
来源: https://www.cnblogs.com/sap-jerry/p/16648280.html