[置顶] Android--边距(margin)与内边距(padding)

边距属性是布局参数,决定了组件间的距离。而内边距并非布局参数,android:padding告诉组件,在绘制组件自身时,要比所含内容大多少。

<Button  android:text="button" android:padding="80dp" android:layout_width="wrap_content" android:layout_height="wrap_content" />

你可能感兴趣的:(android)