我尝试使用单个触摸输入移动主要活动中的自定义视图,但是由于操作栏,事件的x / y坐标会偏移。
我试图找到一种方法来消除操作栏的大小到y坐标,但似乎没有任何工作。我从y坐标getRootView().getHeight() - getHeight()
中减去父视图和自定义视图大小的差异,但值不正确。
有人能指出我正确的方向吗?
自定义视图:
public class SampleView extends View {
private Paint paint;
private Path path = new Path();
public SampleView(Context context) {
super(context);
init();
}
public SampleView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
private void init() {
paint = new Paint();
paint.setColor(Color.RED);
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(10);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.drawPath(path, paint);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
final int x = (int) event.getRawX();
final int y = (int) event.getRawY();
switch(event.getActionMasked()) {
case MotionEvent.ACTION_DOWN: {
path.moveTo(x, y);
break;
}
case MotionEvent.ACTION_MOVE: {
path.lineTo(x, y);
break;
}
}
invalidate();
return true;
}
}
我还没有触及我的MainActivity,但已在XML中添加了activity_main我的自定义视图:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.caseyweed.sample.MainActivity">
<com.caseyweed.sample.SampleView
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
答案 0 :(得分:2)
如果您想要相对于视图的坐标而不是设备屏幕坐标,请使用getX()
和getY()
代替getRawX()
和getRawY()
。