What is the difference between a View's Margin and Padding?

link|improve this question

2  
this is the same as HTML, see here for more stackoverflow.com/questions/2189452/… – Scott Nov 3 '11 at 15:14
feedback

4 Answers

up vote 95 down vote accepted

Padding is the space inside the border, between the border and the actual view's content. Note that padding goes completely around the content: there is padding on the top, bottom, right and left sides (which can be independent).

Margins are the spaces outside the border, between the border and the other elements next to this view. In the image, the margin is the grey area outside the entire object. Note that, like the padding, the margin goes completely around the content: there are margins on the top, bottom, right, and left sides.

An image says more than 1000 words:

alt text

link|improve this answer
6  
The answer is for HTML/CSS, the question was about Android. Android's view model is inspired by HTML, but not identical. For one thing, the border is not a first-class sizable object there. – Seva Alekseyev Jun 23 '11 at 14:24
feedback

Padding is inside of a View.

Margin is outside of a View.

This difference may be relevant to background or size properties.

link|improve this answer
feedback

Padding is within the view, margin is outside. Padding is available for all views. Depending on the view, there may or may not be a visual difference between padding and margin.

Whether or not margin is available, on the other hand, is determined by the container of the view, not by the view itself. In LinearLayout margin is supported, in AbsoluteLayout - no.

link|improve this answer
1  
AFAIK, padding is supported by all views. Views with backgrounds (e.g., Button) will have a visual difference between padding and margins. – CommonsWare Jan 6 '11 at 21:16
You're right. Edited. – Seva Alekseyev Jan 6 '11 at 21:23
feedback

This may be helpful

Declaring Layout

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.