i'm searching for a way to set coordinates for my imageView. i want to put other images on the coordinates.
ImageView img1 = (ImageView) findViewById(R.id.imageView1);
img1.setAdjustViewBounds(true);
My layout is like that :
<RelativeLayout android:id="@+id/rellayneuuuu"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/imageView1" android:scaleType="centerCrop"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:src="@drawable/image1" />
<ImageView android:id="@+id/imageView2" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/icon"
android:layout_marginTop="40px" android:layout_marginLeft="40px" />
</RelativeLayout>
thanks