MPAndroidChart 教程:与图表进行手势交互 Interaction with 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

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

Log.i(“Fling”, "Chart flinged. VeloX: " + velocityX + ", VeloY: " + velocityY);

}

@Override

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

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

总结

Android架构学习进阶是一条漫长而艰苦的道路,不能靠一时激情,更不是熬几天几夜就能学好的,必须养成平时努力学习的习惯。所以:贵在坚持!

上面分享的字节跳动公司2020年的面试真题解析大全,笔者还把一线互联网企业主流面试技术要点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节。

就先写到这,码字不易,写的很片面不好之处敬请指出,如果觉得有参考价值的朋友也可以关注一下我

①「Android面试真题解析大全」PDF完整高清版+②「Android面试知识体系」学习思维导图压缩包阅读下载,最后觉得有帮助、有需要的朋友可以点个赞


《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!
出,如果觉得有参考价值的朋友也可以关注一下我**

①「Android面试真题解析大全」PDF完整高清版+②「Android面试知识体系」学习思维导图压缩包阅读下载,最后觉得有帮助、有需要的朋友可以点个赞

[外链图片转存中…(img-eKMEro6v-1715852507706)]

[外链图片转存中…(img-i101t2aU-1715852507710)]

[外链图片转存中…(img-UpCpS1KA-1715852507712)]
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值