Android的padding和margin區別

我叫阿狸貓發表於2014-03-05
<Button
        android:paddingLeft="50dp"
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="paddingLeft" />

    <Button
        android:layout_marginLeft="50dp"
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="layout_marginLeft" />


結論:

paddingLeft:是距離控制元件最左邊的長度

layout_marginLeft:是整個控制元件距離左邊的長度

相關文章