Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题很简单。但我没有得到。平移时它还调用 mChartView 的 OnClickListener。但是我想在点击图形然后调用 OnClickListener 并在平移时禁用点击。
我正在给出我自己的问题的答案。只需添加平移侦听器即可检查平移是否继续。为此在 OnClickListener 中设置一个布尔值和检查条件。
mChartView.addPanListener(new PanListener() { @Override public void panApplied() { isPanEnables = true; } });