UI layout设置技巧

1. 通过设置背景颜色来观察UI组件的外观。

 

2. 含有layout_width=wrap_content属性的layout, 子layout或者子view不能使用fill_parent或者match_parent、layout_gravity,

父layout不能够因为依赖子元素不能确定自己的大小,所以子元素更不能依赖父元素的大小确定自己的大小和位置(对齐方式),

因为这样会造成无法确定子layout的大小和位置。


3. 面积上:

没有背景图片时,background=content+padding;

space=background+margin

ps:如果限制了layout_width为300dip,即使background的width是400,margin左右加起来是50,那么background的显示宽度只有250=300-50.

 

4. fill_parent和match_parent基本一样,推荐使用fill_parent


你可能感兴趣的:(UI,layout)