我已经从示例here创建了系统叠加层。
在SampleOverlayView.java
中有一个移动事件的方法,如下所示:
@Override
protected void onTouchEvent_Move(MotionEvent event) {
info.setText("MOVE\nPOINTERS: " + event.getPointerCount());
}
我希望我能用它来移动叠加层。我找到了移动叠加层的解决方案(当我移动视图时,它会跟随我的手指移动)。解决方案已超过here
此解决方案使用onTouch
方法,该方法提供View
和MotionEvent
参数。但在我的情况下,我没有view
对象。视图可以是任何东西(作为它的叠加)。只有event
参数。
我知道如何在屏幕上移动叠加层吗?
提前致谢
答案 0 :(得分:1)
当然你已经有View
了。我复制了您链接到的指南的相关部分:
public class SampleOverlayView extends OverlayView {
private TextView info;
private float x;
private float y;
public SampleOverlayView(OverlayService service) {
super(service, R.layout.overlay, 1);
}
public int getGravity() {
return Gravity.TOP + Gravity.RIGHT;
}
@Override
protected void onInflateView() {
info = (TextView) this.findViewById(R.id.textview_info);
}
@Override
protected void refreshViews() {
info.setText("WAITING\nWAITING");
}
@Override
protected void onTouchEvent_Up(MotionEvent event) {w
info.setText("UP\nPOINTERS: " + event.getPointerCount());
}
@Override
protected void onTouchEvent_Move(MotionEvent event) {
float newX = event.getX();
float newY = event.getY();
float deltaX = newX - this.x;
float deltaY = newY - this.y;
// Move this View
this.x = newX;
this.y = newY;
}
@Override
protected void onTouchEvent_Press(MotionEvent event) {
this.x = event.getX();
this.y = event.getY();
}
@Override
public boolean onTouchEvent_LongPress() {
info.setText("LONG\nPRESS");
return true;
}
}
因此,您不需要单独的View
对象,因为该类 IS View
。只需使用view
替换其他答案中出现的this
。