我如何改变我的字体大小。当屏幕尺寸改变时?

发布于 2025-01-05 10:53:59 字数 109 浏览 1 评论 0原文

我想创建一个支持所有类型窗口大小的多平台应用程序。 但是当我的窗口高度或宽度发生变化时,我的字体大小不会改变。 我想用高度或宽度的百分比更改其大小。 我该怎么办?

请帮助我。 提前致谢。

I want to create a multi platform application whose support all type of window size.
But when my window height or width change than my fontSize is not change.
i want to change its size with percentage of height or width.
how i can do?

plz Help me.
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不即不离 2025-01-12 10:53:59

这太容易了。

首先检查窗口的高度或宽度尺寸

var curHeight = Titanium.Platform.displayCaps.platformHeight;
var curWidth = Titanium.Platform.displayCaps.platformWidth;

,然后根据您的要求进行设置。

font:{fontSize = Titanium.Platform.displayCaps.platformWidth*25/100},

或者

font : {fontSize = curWidth*25/100},

This is too easy.

First you check your window height or width size

var curHeight = Titanium.Platform.displayCaps.platformHeight;
var curWidth = Titanium.Platform.displayCaps.platformWidth;

and then set with your requirement.

font:{fontSize = Titanium.Platform.displayCaps.platformWidth*25/100},

or

font : {fontSize = curWidth*25/100},
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文