我正在寻找使用TideSDK创建一个小应用程序,但希望窗口位于右下角并始终位于其他窗口之上
e.g。就像一个透明的叠加层,显示一个图形或一些始终可见的信息,无论将焦点切换到其他窗口
这可行吗?
答案 0 :(得分:4)
在tiapp.xml上定义:
<transparent-background>true</transparent-background>
关于css define:
<style type="text/css">
html, body {
background : transparent;
}
</style>
在您的javascript电话上:
<script type="text/javascript">
Ti.UI.currentWindow.setTopMost ( true );
Ti.UI.currentWindow.moveTo ( display.width-your.app.width, display.height-your.app.height );
</script>