有没有办法将SAPUI5 / FIORI应用程序的方向锁定为始终显示?不确定是否通过jquery和某些css更改方向将起作用。
感谢。
答案 0 :(得分:0)
除非是本机应用程序,否则不能。
但是当用户处于纵向模式时,您可以进行黑客显示消息以进入横向模式。
<style type="text/css">
#warningContent { display: none; }
@media only screen and (orientation:landscape){
#warningContent { display:none; }
}
@media only screen and (orientation:portrait){
#content { display:none; }
#warningContent { display:block; }
}
</style>
<div id="content">
<!-- your SAPUI5 app goes here-->
</div>
<div id="waringContent">
This SAPUI5 app is only viewable in landscape mode. Please change the orientation.
</div>
答案 1 :(得分:0)
您可以使用UI5应用属性。