1.padding和margin
前者是内边距,后者是外边距
2.bitmap位图是Drawable的一种,Drawable是Android处理图像通用的类
3.
- Top:子View左上角距父View顶部的距离;
- Left:子View左上角距父View左侧的距离;
- Bottom:子View右下角距父View顶部的距离
- Right:子View右下角距父View左侧的距离
之后又加入x,y概念,x,y为控件左上角坐标
之后又加入translationX,translationY的概念,是控件左上角相对于容器的偏移量
x=left+translationX, y=top+translationY