I'm having some icons(like square) in grid view and i want to place some other icons(like circle), over the square. I'm dragging and moving the circle and placing it over square icon. now i would like to drag the X,Y positions of Square icon as well Circle icons. when i try getting the X,Y positions of both icons, its looking diff, even though both placed on same place in the device. Please refer the screen shot.
Why the values are totally different? Please help me. How to make both icon's X,Y postion as same. Here is my code for placing the square icon:
for (int j = 0; j < GAME_SIZE_Y; j++) {
ImageView iv = new ImageView(this);
iv.setAdjustViewBounds(true);
iv.setMaxHeight(GAME_COIN_HEIGHT);
iv.setMaxWidth(GAME_COIN_WIDTH);
iv.setScaleType(ImageView.ScaleType.FIT_CENTER);
iv.setImageResource(CoinBucket.EMPTY__COIN_ID);
iv.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
int[] values = new int[2];
view.getLocationOnScreen(values);
Toast.makeText(getApplicationContext(), "X & Y: " + values[0]+" "+values[1], Toast.LENGTH_SHORT).show();
}
});
rowLayout[i].addView(iv);
}
Here is my code for getting X,Y position while dropping.
@Override
public boolean onTouch(View v, MotionEvent event) {
AbsoluteLayout.LayoutParams p;
int eventaction = event.getAction();
switch (eventaction) {
case MotionEvent.ACTION_UP: {
Toast.makeText(getApplicationContext(), "X & Y: " + xPos+" " + yPos, Toast.LENGTH_SHORT).show();
} } }