Below is a TextView followed by an ImageView contained in RelativeLayout. I\'m trying to get the bottom of the image to align with the baseline of the text. When I use alignBa
You should use both following lines in your ImageView to align bottom of Image view to bottom of nearby TextView:
android:layout_alignBaseline="@+id/txtview" android:baselineAlignBottom="true"