MPAndroidChart 教程:与图表进行手势交互 Interaction with the Chart(二

本文介绍了如何在MPAndroidChart库中实现手势交互,包括设置监听器以接收触摸事件回调,如图表的缩放、平移、双击等。通过实现OnChartGestureListener接口,可以在不直接操作图表的情况下实现特定功能,例如记录和打印缩放比例。
摘要由CSDN通过智能技术生成
  • Called when nothing has been selected or an “un-select” has been made.

*/

public void onNothingSelected();

}

让你的类实现该接口并设置对 chart 进行监听,即可接受回调。

Simply let your class that should receive the callbacks implement this interface and set it as a listener to the chart:

chart.setOnChartValueSelectedListener(this);

手势回调


监听器 OnChartGestureListener 可以使得 chart 与手势操作进行交互。

public interface OnChartGestureListener {

/**

  • Callbacks when a touch-gesture has started on the chart (ACTION_DOWN)

  • @param me

  • @param lastPerformedGesture

*/

void onChartGestureStart(MotionEvent me, ChartTouchListener.ChartGesture lastPerformedGesture);

/**

  • Callbacks when a touch-gesture has ended on the chart (ACTION_UP, ACTION_CANCEL)

  • @param me

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值