在Google饼图上添加长按事件侦听器

时间:2017-04-08 11:32:43

标签: javascript android charts google-visualization pie-chart

是否有任何选项可以在Google饼图上添加长按事件监听器? 例如:长按Google Pie图表的任何部分都会导致开始另一项活动。

修改1

// Sets a tooltip action which will pop an alert box on the screen when triggered.
chart.setAction({
  id: 'alertAction',
  text: 'Trigger Alert',
  action: function() {
    alert('You have triggered an alert');
  }
});

但是如何在android中使用Activity在android中启动其他action: function()? 如何开始新活动?

startActivity(new intent(OldActivity.this,NewActivity.class));

0 个答案:

没有答案