在 Android 上使用 AbsoluteLayout?
我的应用程序的所有页面都使用已弃用的 AbsoluteLayout。 有人告诉我,我不应该使用绝对布局的原因是它在不同的屏幕尺寸中不灵活。
我用每个带有 android sdk 的模拟器测试了我的应用程序,没有任何问题。 但所有模拟器上的所有屏幕似乎都有相同的尺寸。 只要它适用于所有模拟器,我就可以安全地使用绝对布局吗? 1.1、1.5、1.6、2.0、2.0.1、2.2、2.2
All pages of my application use the AbsoluteLayout which is deprecated.
I was told that the reason i should not use absolutelayout is that it's not flexible in different screen sizes.
I tested my app with every simulator comes with android sdk, and I had no problem.
But all screens on all simulators seem to have the same size.
am i safe to go with absolute layout as long as it works on all simulators?
1.1, 1.5, 1.6, 2.0, 2.0.1, 2.2, 2.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在创建 AVD 时设置屏幕尺寸(通过将 Skin Default HVGA 更改为其他值)。
您还可以按数字键盘上的 7 和 9 键更改方向。
You can set screen size when creating AVD (by changing Skin Default HVGA to some other).
And you can also change orientation pressing 7 and 9 keys on numeric keyboard.
如果所有模拟器上的所有屏幕似乎都具有相同的尺寸,那是因为您在创建它们时没有更改其分辨率。请参阅 Gawcio 的回应。
不,你不是。您必须停止使用
AbsoluteLayout
...有更好的方法来构建您的应用程序。If all screens on all simulators seem to have the same sizem it's because you are not changing it's resolution at the moment of create them. See Gawcio's response.
No, you are not. You must stop using
AbsoluteLayout
... there are better ways to build your application.