Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Padding is inside of the border, margin is outside. See the W3C Box model for details. This blog post is much more readable, though :-) – Aaron Digulla Jun 17 '10 at 9:40
When you pack something breakable to mail, you put padding around the item (content) to cushion it. Then, just know the 'other one is space oustide the box' in this case margin. – Billy Jun 17 '10 at 14:47
This may be helpful Declaring Layout – Sharique Abdullah Sep 10 '11 at 7:09
2  
this is the same as HTML, see here for more stackoverflow.com/questions/2189452/… – Scott Nov 3 '11 at 15:14

6 Answers

up vote 227 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

share|improve this answer
18  
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
11  
NOTE: In Android, the layout_width property includes content and padding. (In HTML, the css width property refers to content width only.) As Seva said, Android has no built in concept of borders. You can use a 9-patch png background or an xml vector drawable to add a border in Android. – SharkAlley Jun 24 '12 at 20:52
1  
It's also worth noting that the background is modified based on the margin but not the padding (in Android.) – ArtOfWarfare Nov 13 '12 at 20:39

Padding is inside of a View.

Margin is outside of a View.

This difference may be relevant to background or size properties.

share|improve this answer

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.

share|improve this answer
2  
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

Padding is the space inside the border between the border and the actual image or cell contents. Margins are the spaces outside the border, between the border and the other elements next to this object.

share|improve this answer

Sometimes you can achieve the same result by playing only with padding OR margin. Example :

Say View X contains view Y (aka : View Y is inside View X).

-View Y with Margin=30 OR View X with Padding=30 will achieve the same result: View Y will have an offset of 30.

share|improve this answer

Android layout has no padding. But you can use Gravity. E.g. You wanna center two btns inside a RelativeLayout. You just set RelativeLayout's Gravity android:gravity="center"

Then set android:layout_alignParentLeft(Right, Top or Bottom)="true" for these two btns to simulate RelativeLayout's padding effect.

share|improve this answer
Could you please point out why you down voted my answer? So I can learn from my mistake. Thank you. – DontTellMeWhatICant May 8 at 5:42
I'm not the one who down voted you but I assume it's because your said Android has no padding when in fact it does. Every view has padding options that can be set via xml or programmatically (the same goes for margins.) – Slynk May 8 at 12:42
Thank you so much Slynk. I found under each non-view element there is View element where you can set padding options. Beforehand I could only set Layout Parameters to achieve padding effect. Could you please tell since which android version we can set padding in View element? – DontTellMeWhatICant May 9 at 13:46
developer.android.com/reference/android/view/…, int, int, int) Since api level 1. – Slynk May 14 at 18:01
You are absolutely right. Thank you Slynk. – DontTellMeWhatICant May 14 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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