I have An imageView with android:scaleType="matrix"
<ImageView
android:id="@+id/imageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/textView1"
android:layout_marginTop="20dp"
android:scaleType="matrix"
android:src="@drawable/ic_launcher" />
I want to drag this ImageView
to left to look at the parts of image which were off screen.
In other words I want to move this image to the point where I mark the point on ImageView
.
Please help. Thanks