gpt4 book ai didi

android - 使用幻灯片删除项目 ListView - 像 Gmail

转载 作者:IT王子 更新时间:2023-10-29 00:02:19 25 4
gpt4 key购买 nike

我正在开发一个在 ListView 中包含商店列表的应用程序。我需要当我向右(或向左)滑动 listview 的项目时,该项目应该从 ListView 中删除。

我有我的 ListView ,只需要执行它的函数。

提前致谢。

最佳答案

这就是我实现这种效果的方式。我们有一个 ListView lvSimple 并且我们将 onTouchListener 添加到我们的 lvSimple 中。这是我的工作代码。

float historicX = Float.NaN, historicY = Float.NaN;
static final int DELTA = 50;
enum Direction {LEFT, RIGHT;}
...
ListView lvSimple = (ListView) findViewById(R.id.linLayout);
...
lvSimple.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {

switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
historicX = event.getX();
historicY = event.getY();
break;

case MotionEvent.ACTION_UP:
if (event.getX() - historicX < -DELTA) {
FunctionDeleteRowWhenSlidingLeft();
return true;
}
else if (event.getX() - historicX > DELTA) {
FunctionDeleteRowWhenSlidingRight();
return true;
}
break;

default:
return false;
}
return false;
}
});

当我们向左滑动时,FunctionDeleteRowWhenSlidingLeft() 函数调用,FunctionDeleteRowWhenSlidingRight() - 分别向右滑动。在这个函数中你需要粘贴动画代码。

关于android - 使用幻灯片删除项目 ListView - 像 Gmail,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14398733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com