android drawable与mipmap(drawable getbounds)
大家好,我是小曜,我来为大家解答以上问题。android drawable与mipmap,drawable getbounds很多人还不知道,现在让我们一起来看看吧!
1、ImageView imageView = (ImageView)findViewById(R.id.imageview);
2、imageView.setOnTouchListener(new OnTouchListener() {
3、@Override
4、public boolean onTouch(View v, MotionEvent event) {
5、//当按下时获取到屏幕中的xy位置
6、if(event.getAction()==MotionEvent.ACTION_DOWN){
7、Log.e("point",event.getX() +","+event.getY());
8、//更多关于坐标转换的参考
9、Drawable drawable = imageView.getDrawable();
10、Rect imageBounds = drawable.getBounds();
11、//初始化bitmap的宽高
12、int intrinsicHeight = drawable.getIntrinsicHeight();
13、int intrinsicWidth = drawable.getIntrinsicWidth();
14、//可见image的宽高
15、int scaledHeight = imageBounds.height();
16、int scaledWidth = imageBounds.width();
17、//使用fitXY
18、float heightRatio = intrinsicHeight / scaledHeight;
19、float widthRatio = intrinsicWidth / scaledWidth;
20、//获取图像边界值
21、int scaledImageOffsetX = event.getX() - imageBounds.left;
22、int scaledImageOffsetY = event.getY() - imageBounds.top;
23、//根据你图像的缩放比例设置
24、int originalImageOffsetX = scaledImageOffsetX * widthRatio;
25、int originalImageOffsetY = scaledImageOffsetY * heightRatio;
本文到此讲解完毕了,希望对大家有帮助。