我在 android 应用程序上有 tableview。当我们在表格行上从左到右或从右到左滑动时,我需要启用删除按钮,并且当我们单击屏幕上的任意位置时需要禁用按钮。它应该从 2.3 到 jellybean。请为此提供解决方案。
问问题
2191 次
1 回答
4
这样的选项在android中称为FLING ...
检查是示例: https ://github.com/krishjlk/android-listview-swipe-delete-example-sample-tuorial
可能会有所帮助
编辑 :
private class GestureListener extends SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
System.out.println("UFFFFF");
if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
System.out.println("Right to left");
return false; // Right to left
} else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
System.out.println("Left to right");
iv5.setBackgroundDrawable(enterShape);
Intent go=new Intent(Swipe.this,NewContact.class);
startActivity(go);
return false; // Left to right
}
if (e1.getY() - e2.getY() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityY) > SWIPE_THRESHOLD_VELOCITY) {
return false; // Bottom to top
} else if (e2.getY() - e1.getY() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityY) > SWIPE_THRESHOLD_VELOCITY) {
return false; // Top to bottom
}
return false;
}
}
于 2013-08-07T07:08:38.877 回答