Preethi
Preethi

Reputation: 2152

partial overlap of images in android?

How to achieve partial overlap of 2 images in android. Please do check http://cl.ly/KB8R

I am trying to use both frame and relative layout but unable to achieve this look and feel .

Upvotes: 0

Views: 1061

Answers (1)

LianYong Lee
LianYong Lee

Reputation: 321

1: if all of your screen is filled by this two image, let the first imageview align parent top.

android:layout_alignParentTop="true"

and let the second imageview align parent bottom.

android:layout_alignParentBottom="true"

2: otherwise, you should make one of your imageview fixed and give it an id like this.

android:id="@+id/image1"

and let image2 align top of image1 and do it.

android:layout_alignTop="@+id/image1"
android:layout_marginTop="100dip"

Upvotes: 1

Related Questions