嗨,我正在尝试检测 2 个手指何时触摸屏幕:
case MotionEvent.ACTION_POINTER_2_DOWN: {
twoFing=true;
return true;
}
问题是:
public static final int ACTION_POINTER_2_DOWN
已弃用,医生说:
* getActionMasked() 的常量:非主指针已关闭。使用 getActionIndex() 检索更改的指针的索引。索引在 getAction() 返回的未屏蔽操作的 ACTION_POINTER_INDEX_MASK 位中编码。*
但我不明白如何使用它......我怎么能检测到有 2 个指针?如果我尝试 getPointerIndex(),ActionUP 和 Down 总是说只有一个指针
多谢
编辑:我在这里发布完整的代码以更清楚地了解问题。我的代码正在工作,但是因为 ACTION_POINTER_2_DOWN 是一个已弃用的值,我想用其他东西替换它,但我不知道如何。
@SuppressWarnings("deprecation")
public boolean onTouch(View v, MotionEvent event) {
switch(event.getAction()){
case MotionEvent.ACTION_DOWN : {
Log.i(TAG, "Action Down");
downX = event.getX(0);
downY = event.getY(0);
return true;
}
case MotionEvent.ACTION_UP: {
upX = event.getX(0);
upY = event.getY(0);
float deltaX = downX - upX;
float deltaY = downY - upY;
Log.i(TAG, "Action UP deltaX="+deltaX+", deltaY="+deltaY);
// swipe vertical?
if(Math.abs(deltaY) > MIN_DISTANCE && twoFing){
twoFing=false;
// top or down
if(deltaY < 0 )
{
if(slide.zoom==1)
slide.zoom=0;
Log.i(TAG, "Going Down zooming in");
//return true;
}
if((deltaY > 0) )
{
if(slide.zoom==0)
slide.zoom=1;
Log.i(TAG, "Going up zoomig out");
//return true;
}
return true;
}
// swipe horizontal?
if(Math.abs(deltaX) > MIN_DISTANCE && !twoFing){
// left or right
if(deltaX < 0) { this.slideToTheLeft(); return true; }
if(deltaX > 0) { this.slideToTheRight(); return true; }
return true;
}
return false;
}
case MotionEvent.ACTION_POINTER_2_DOWN: {
twoFing=true; //inform that the touch was made with 2 fingers
Log.i(TAG, "Action Second pointer down");
return true;
}
}
return false;
}