Reputation: 13
I have two imageView with two different size image. anyone one have idea how to align two image from baseline?
Upvotes: 1
Views: 462
Reputation: 16603
If you put these images in a RelativeLayout
, one has @+id/first
, another @+id/second
,
then in the second image specify: android:alignBottom="@id/first"
Upvotes: 2