此类代码的目的是什么:
android:layout_height="-2"
或者
android:layout_width="-1"
我应该如何解释这些价值观?它们与layout_weight属性有关吗?
由于
答案 0 :(得分:4)
编辑: 我的错误,我误解了这个问题。
负值似乎代表match_parent,wrap_content和fill_parent。
当应用-1或-2时,视图就像填充match_parent或fill_parent一样填充屏幕。当应用任何数字-3或更低时,行为与wrap_content相同。
这些值与layout_weight无关,只是Android中宽度和高度的预定义常量。