Here I create reflection of image as a shadow of image in android.
Below is full example of this.
My xml file for imageview..
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <ImageView android:id="@+id/imageView1" android:layout_width="150dp" android:layout_height="150dp" android:src="@drawable/ic_launcher" /> </LinearLayout>
Java file for this....