match_parent 兼容性

发布于 2024-11-18 14:24:24 字数 135 浏览 2 评论 0原文

我的应用程序的目标是 android Sdk v10,但 minSdkVersion 是 v6。 默认情况下,“match_parent”属性将用于宽度或高度。我是否应该更改 fill_parent 以确保设备与 2.2 下的 android 向后兼容?

My application targets the v10 of the android Sdk but has the v6 for minSdkVersion.
By default the "match_parent" propertie will be used for the width or height. Should i change it for fill_parent to ensure backwards compatibility of device with android under 2.2 ?

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

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

发布评论

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

评论(2

初相遇 2024-11-25 14:24:24

是的,您应该使用 fill_parent 而不是 match_parent 来减少歧义,因为您的最低 sdk 版本是 V6。
fill_parent 也适用于 android 2.2 。

yes, you should use fill_parent instead of match_parent to reduce the ambiguity as your min sdk version is V6.
fill_parent also works on android 2.2 .

错爱 2024-11-25 14:24:24

使用 match_parent。 FILL_PARENT 和 MATCH_PARENT 常量 都编译为 -1 和适用于任何 Android 设备。

Use match_parent. Both FILL_PARENT and MATCH_PARENT constants are compiled to -1 and will work on any Android device.

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