1

我正在寻找使用 TideSDK 制作一个小应用程序,但希望窗口位于右下角并始终位于其他窗口的顶部

例如,像一个透明的覆盖显示图表或某些信息,无论将焦点切换到其他窗口,这些信息始终可见

这是可行的吗?

4

1 回答 1

4

在 tiapp.xml 上定义:

<transparent-background>true</transparent-background>

在 css 上定义:

<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>
于 2013-09-23T13:11:55.543 回答