我有一个应用程序,我自己处理所有触摸,而不是使用触摸和手势检测 API,因为它是一个浮动窗口,并且是唯一可行的方式。
我做的一件事是改变手指下视图的颜色。OnTouch 我检查手指下的哪个视图,如果它与我之前运行的不同:
myView.setBackgroundColor(getResources().getColor(R.color.white));
当我转到当前视图旁边的视图并快速返回时,它不起作用。
我用日志检查过,发现的视图是正确的。而且我还检查并执行了 setBackgroundColor 所在的行。
所以我不知道还能做什么。是否有任何 setBackgroundColor 不起作用的情况?如果 onTouch 执行时间过长,是否无法完成其任务?
关于如何解决这个问题的任何线索?
编辑: 只有当我转到当前视图旁边的视图并快速返回时,它才会失败。我没有添加代码,因为我认为它比我所做的抽象更难阅读。我已经清理并发布了。如果您认为任何调用的方法都是相关的,我可以添加它们。 编辑 2: 如果 ACTION 不是 ACTION_DOWN 或 ACTION_UP,则运行的代码。这些案件不相关。
if ((isPortrait && isPortraitMeasured) || (!isPortrait && isLandscapeMeasured)) {
//Log.d("algor", "Here calculate where it is");
final int lastCol = currentColumn;
final int lastRow = currentRow;
findCell((int) event.getRawX(), (int) event.getRawY());
if ((lastCol == currentColumn && lastRow == currentRow)) {
if (isPortrait && currentRow==-1 || (!isPortrait && currentColumn==-1)
&& !wasPressed && currentTable!=mainTable) {
//is actionBar. Check if finger is over back icon, to go back
//Code not related to the problem...
}
} else {
int currentIndex = getAppsListIndex();
if (currentIndex >= 0) {
View nextApp;
if (isPortrait)
nextApp = cellsP.get(currentTable).get(currentIndex);
else
nextApp = cellsL.get(currentTable).get(currentIndex);
final Object tag = nextApp.getTag();
if (tag instanceof FolderData) {
//Code not related to the problem...
} else {
Log.d("fastf", "time to change color");
//nextApp.setBackgroundColor(getResources().getColor(R.color.white));
nextApp.setBackgroundColor(whiteColor);
//nextApp.setBackground(getResources().getDrawable(R.color.white));
/*final View app = nextApp;
app.post(new Runnable() {
@Override
public void run() {
app.setBackgroundColor(getResources().getColor(R.color.white));
}
});*/
}
} else {
//Code not related to the problem...
}
int lastIndex = getAppsIndexFromInts(lastRow, lastCol);
//lastCol != -2 is because otherwise, on opening the launcher it animates
// the last app launched
if (lastIndex >= 0 && lastCol != -2) {
View lastApp;
if (isPortrait)
lastApp = cellsP.get(currentTable).get(lastIndex);
else
lastApp = cellsL.get(currentTable).get(lastIndex);
ObjectAnimator animator = ObjectAnimator.ofInt(lastApp,
"backgroundColor", getResources().getColor(R.color.clear_gray),
getResources().getColor(R.color.white_overlay_transition));
animator.setDuration(500);
animator.setEvaluator(new ArgbEvaluator());
animator.start();
}
}
}