match_parent 兼容性
我的应用程序的目标是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您应该使用 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 .
使用 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.