English 中文(简体)
Java 应用程序自动调整大小以适应屏幕分辨率
原标题:Java application automatically resize to fit screen resolution

我开发的触摸屏应用程序将被用于不同的屏幕分辨率。 我之前从未为此担心过, 但现在我已经担心了。 我想知道我如何设计图形界面, 使图形界面上的每个对象都按比例调整大小, 以适应屏幕分辨率? 你能把我引到一个好的辅导页面吗? 我正在用NetBeans 和 Swing 框架来设计应用程序。 谢谢

问题回答

我想知道我如何设计图形用户界面, 使图形用户界面上的每个对象都按比例调整大小, 以适应屏幕分辨率?

  • 工作不容易, 您必须测试存在的所有可能的像素比例( 默认情况下可以更改, 并在今天全HD屏幕上设置各种像素比例), 且失败很多 。

  • 这也是为什么""http://docs.oracle.com/javase/tutimental/uiswing/layout/visial.html" rel="不跟随 norefererr">LayoutManagers 存在的原因,

  • 我建议使用"https://stackoverflow.com/ questions/5621138/about-swing-and-jtable/5630271#5630271>Nested Layout

  • 确实存在自定义 < code> LayootManagers ,例如,使用 MigLayoot (在 GridBagLayoot 之间 < dridBagLayoot 之间,可以将所有 Jconcompents 从一个地方放入容器,但我再次建议使用 NestedLayoot 代替 < code>

  • 您必须设置( 内部) 最小屏幕, 用于显示 < code> JScrollPane 中的内容, 例如分辨率小于 1024 x 600 的屏幕将具有可滚动的内容, 否则让 < code> LayoutManagers 的此项任务可以滚动,

  • 此概念要求的模型 JFrame -- & gt; JscrollPane -- & gt; JJPanel (父面板), JScrollPane 将保护您的图形界面不受小屏幕分辨率(和双面)的干扰。

  • 您必须查看 FontMetrics Font , 因为您需要使用屏幕上的 JComponents 大小, 并使用屏幕上的 JComponents 大小, 在/ 减少 Font 尺寸中, 您需要查看 < code> Font 的 < font 大小, 因为您需要使用屏幕上的 JComponents 大小的像素比率比大小

  • 如果存在 Icons , 则使用相同的 Icons , 准备在一些图形 SW S 中之前, 不在运行时调整大小

  • 我的视图 - & gt; 任何基于 AWT/ Swing Framework 都不具备这种性质的工作的优势,





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...