Reputation: 265
Hello i have used a Relativelayout in android using XML but when i see image in graphical layout there is small margin left at bottom in different screensizes.How to remove that margin.I also used a ScrollView in layout.
Upvotes: 0
Views: 1201
Reputation: 89
Check whether you have used padding for your layout,
Better post your layout file and/or screenshot.
Upvotes: 0
Reputation: 1372
I think you have to set bottom margin in negative
like
android:layout_marginBottom="-10dip"
Upvotes: 1