sahil
sahil

Reputation: 265

Removing the margin from bottom in android Relativelayout

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

Answers (2)

B Roh
B Roh

Reputation: 89

Check whether you have used padding for your layout,

Better post your layout file and/or screenshot.

Upvotes: 0

Newts
Newts

Reputation: 1372

I think you have to set bottom margin in negative

like

 android:layout_marginBottom="-10dip"

Upvotes: 1

Related Questions