移动设备的 Kivy 窗口大小

发布于 2025-01-10 09:24:21 字数 188 浏览 0 评论 0原文

我正在 PC 上编写 kivy 应用程序。最后,我将在我的 Android 手机(redmi note 9 pro)上将其转换为 .apk。我应该选择哪种窗户尺寸?使用这个特定的窗口大小进行编码会更容易(在特定位置添加按钮和文本)。

以及如何做。因为我听说使用 window.size 不好/不起作用。

谢谢

I am coding kivy app on PC. At the end, I will convert it to .apk on my android phone (redmi note 9 pro). Which window size should I choose? It will be easier to code with this specific window size (add buttons and text on specific place).

And how to do it. Because I heard that using window.size is not good/not working.

Thanks

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

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

发布评论

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

评论(1

小ぇ时光︴ 2025-01-17 09:24:21

通常更好的主意是不要针对特定​​的窗口大小进行编码,而是以这样的方式对 gui 进行编码,无论窗口大小如何,它都会尝试执行一些明智的操作。例如,您的应用程序的顶部可能有一个始终为 40dp 高的导航栏,然后应用程序的其余部分被其他内容占据,这些内容会不断增长以填充所有可用空间。

当然,如果您愿意,您可以将整个 gui 编码为固定大小,但这可能不是最好的解决方案。

It's usually a better idea not to code for a specific window size, but to code the gui in such a way that regardless of the window size it tries to do something sensible. For instance, your app might have a navigation bar at the top that is always 40dp high, then the rest of the app is taken up by something else that grows to fill all the available space.

You can code the whole gui to a fixed size if you want of course, but it probably isn't the best solution.

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