How can i set layout margin individually in android?
Example case: i want the margin for top:15, right:12, bottom:13, left:16
How to that in android?
I have background as web developer, i though it will the same as css with setup like this margin: 15 12 13 16;
but seems it not working with android
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_margin">15dp 12dp 13dp 16dp</dimen>
</resources>
What is the right way to achieve that? is there any link for documentation to for this?