我希望获得ImageView
的坐标,与设备大小无关。
有没有办法!!
我尝试为ImageView
创建特定尺寸,即使Parent View
的尺寸也相同,但它不起作用。
我尝试了以下可能的方法。
int[] posXY = new int[2];
imageview.getLocationOnScreen(posXY);
int MoveX = posXY[0];
int MoveY = posXY[1];
我也曾尝试使用Matrix,但不能正常工作。
Matrix m = imageview.getImageMatrix();
尝试了以下代码,但它也无效。!!
我需要为同一点(位置)的所有设备获得相同的{x,y}坐标。
final float[] getPointerCoords(ImageView view, MotionEvent e)
{
final int index = e.getActionIndex();
final float[] coords = new float[] {
e.getX(index), e.getY(index)
};
Matrix matrix = new Matrix();
view.getImageMatrix().invert(matrix);
matrix.mapPoints(coords);
return coords;
}
这是绘制方法:
如果我在绘图中设置位图图像,则它不适合每个设备的屏幕。如果我设置显示宽度和高度的图像,我会得到不同的坐标。
@Override
public void draw(Canvas canvas) {
// TODO Auto-generated method stub
super.draw(canvas);
Resources res = getResources();
Drawable drawable = res.getDrawable(R.drawable.subimage);
mBitmap = ((BitmapDrawable) drawable).getBitmap();
canvas.drawBitmap(mBitmap, 0, 0, null);
}
任何想法或帮助都会非常有用。
答案 0 :(得分:1)
您必须先计算设备屏幕比例,
deviceWidth / screenHeight = ratio
然后你必须将它与你想要的坐标相乘:
ratio * xCoord = newXcoord; // and same for Y coord
通过这样做,您将保留所有设备尺寸的等效坐标。
您也可以声明相对于屏幕尺寸百分比的尺寸和坐标,如:
x = 0.2 * deviceWidth // %20 of device width from left
答案 1 :(得分:1)
最后找到了一些相关解决方案,所有设备的相同坐标。使用Activity,没有自定义ImageView。
在ImageView OnTouch ..
public boolean onTouch(View v, MotionEvent event) {
int action = event.getAction();
final int index = e.getActionIndex();
final float[] coords = new float[] {
e.getX(index), e.getY(index)
};
Matrix matrix = new Matrix();
choosenImageView.getImageMatrix().invert(matrix);
matrix.mapPoints(coords);
return true;
}
使用画布绘制
Resources res = getResources();
Drawable drawable = res.getDrawable(R.drawable.image);
Bitmap bmp= ((BitmapDrawable) drawable).getBitmap();
alteredBitmap = Bitmap.createBitmap(bmp.getWidth(), bmp.getHeight(), bmp.getConfig());
canvas = new Canvas(alteredBitmap);
paint = new Paint();
paint.setColor(Color.GREEN);
paint.setStrokeWidth(5);
matrix = new Matrix();
canvas.drawBitmap(bmp, matrix, paint);
答案 2 :(得分:0)
你可以试试这个
imageview.post(new Runnable() {
@Override
public void run() {
int[] posXY = new int[2];
imageview.getLocationOnScreen(posXY);
int MoveX = posXY[0];
int MoveY = posXY[1];
Log.i("xy co-ordinate", "x "+MoveX, "y"+MoveY);
}
});