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

MPAndroidChart 提供了许多用于交互回调的方法,其中 OnChartValueSelectedListener 在点击高亮值时回调。

public interface OnChartValueSelectedListener {

/**

  • Called when a value has been selected inside the chart.

  • @param e The selected Entry.

  • @param dataSetIndex The index in the datasets array of the data object

  • the Entrys DataSet is in.

  • @param h the corresponding highlight object that contains information

  • about the highlighted position

*/

public void onValueSelected(Entry e, int dataSetIndex, Highlight h);

/**

  • 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

  • @param lastPerformedGesture

*/

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

/**

  • Callbacks when the chart is longpressed.

  • @param me

*/

public void onChartLongPressed(MotionEvent me);

/**

  • Callbacks when the chart is double-tapped.

  • @param me

*/

public void onChartDoubleTapped(MotionEvent me);

/**

  • Callbacks when the chart is single-tapped.

  • @param me

*/

public void onChartSingleTapped(MotionEvent me);

/**

  • Callbacks then a fling gesture is made on the chart.

  • @param me1

  • @param me2

  • @param velocityX

  • @param velocityY

*/

public void onChartFling(MotionEvent me1, MotionEvent me2, float velocityX, float velocityY);

/**

  • Callbacks when the chart is scaled / zoomed via pinch zoom gesture.

  • @param me

  • @param scaleX scalefactor on the x-axis

  • @param scaleY scalefactor on the y-axis

*/

public void onChartScale(MotionEvent me, float scaleX, float scaleY);

/**

  • Callbacks when the chart is moved / translated via drag gesture.

  • @param me

  • @param dX translation distance on the x-axis

  • @param dY translation distance on the y-axis

*/

public void onChartTranslate(MotionEvent me, float dX, float dY);

}

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

chart.setOnChartGestureListener(this);

设置了监听器后,chart 会根据你的 setXXXEnable() 进行放缩移动等操作。不用在接口方法里对图表进行放缩移动等其他操作,接口方法可以让你实现其他对应功能,比如说你要打印放缩是的 ScaleX,ScaleY :

@Override

public void onChartScale(MotionEvent me, float scaleX, float scaleY) {

Log.i(“Scale / Zoom”, "ScaleX: " + scaleX + ", ScaleY: " + scaleY);

}

打印的日志类似:

I/Gesture: START

I/Scale / Zoom: ScaleX: 1.0, ScaleY: 1.0

I/Scale / Zoom: ScaleX: 1.0, ScaleY: 1.0

I/Scale / Zoom: ScaleX: 1.0174584, ScaleY: 1.0174584

I/Scale / Zoom: ScaleX: 1.240304, ScaleY: 1.240304

I/Scale / Zoom: ScaleX: 1.4446417, ScaleY: 1.4446417

I/Scale / Zoom: ScaleX: 1.5617653, ScaleY: 1.5617653

I/Scale / Zoom: ScaleX: 1.0241176, ScaleY: 1.0241176

I/Scale / Zoom: ScaleX: 1.1038365, ScaleY: 1.1038365

I/Gesture: END, lastGesture: PINCH_ZOOM

下面是练习时写的一些 OnChartGestureListener 接口实现方法:

@Override

public void onChartGestureStart(MotionEvent me, ChartTouchListener.ChartGesture lastPerformedGesture) {

Log.i(“Gesture”, “START”);

}

@Override

public void onChartGestureEnd(MotionEvent me, ChartTouchListener.ChartGesture lastPerformedGesture) {

Log.i(“Gesture”, "END, lastGesture: " + lastPerformedGesture);

// un-highlight values after the gesture is finished and no single-tap

if (lastPerformedGesture != ChartTouchListener.ChartGesture.SINGLE_TAP)

mChart.highlightValues(null); // or highlightTouch(null) for callback to onNothingSelected(…)

}

@Override

public void onChartLongPressed(MotionEvent me) {

Log.i(“LongPress”, “Chart longpressed.”);

}

@Override

public void onChartDoubleTapped(MotionEvent me) {

Log.i(“DoubleTap”, “Chart double-tapped.”);

}

@Override

public void onChartSingleTapped(MotionEvent me) {

Log.i(“SingleTap”, “Chart single-tapped.”);

}

@Override

最后

为了方便有学习需要的朋友,我把资料都整理成了视频教程(实际上比预期多花了不少精力)

当程序员容易,当一个优秀的程序员是需要不断学习的,从初级程序员到高级程序员,从初级架构师到资深架构师,或者走向管理,从技术经理到技术总监,每个阶段都需要掌握不同的能力。早早确定自己的职业方向,才能在工作和能力提升中甩开同龄人。

  • 无论你现在水平怎么样一定要 持续学习 没有鸡汤,别人看起来的毫不费力,其实费了很大力,这四个字就是我的建议!!
  • 我希望每一个努力生活的IT工程师,都会得到自己想要的,因为我们很辛苦,我们应得的。

当程序员容易,当一个优秀的程序员是需要不断学习的,从初级程序员到高级程序员,从初级架构师到资深架构师,或者走向管理,从技术经理到技术总监,每个阶段都需要掌握不同的能力。早早确定自己的职业方向,才能在工作和能力提升中甩开同龄人。

无论你现在水平怎么样一定要 持续学习 没有鸡汤,别人看起来的毫不费力,其实费了很大力,没有人能随随便便成功。

加油,共勉。
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

  • 5
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值