容器和视图之间的宽度/高度
容器中的android:layout_width&android:layout_height与包含的视图之间有什么关系?
例如,如果我有一个LinearLayout,其布局宽度和高度设置为fill_parent,并且我有一个Button,将这些值设置为wrap_content,它使用Button中的值,如Button值覆盖LinearLayout。
但是,如果我交换它们,以便LinearLayout值都是wrap_content并且Button值现在是fill_parent,它仍然使用wrap_content,这次不会覆盖这些值,而是使用LinearLayout提供的值。
有人可以解释他们是如何相互关联的,因为这对我来说很混乱?
谢谢
居鲁士
http://developer.android.com/guide/topics/ui/how-android-draws.html这篇文章解释得非常好
链接地址: http://www.djcxy.com/p/16643.html上一篇: width/ height between containers and views
下一篇: Android RelativeLayout : how to alignParentBottom when wrapped in a ScrollView?