我正在使用最新版本的 mpandroidchart 库。我有 2 个关于单个活动的条形图。chart1 & chart2 是 XML 中的 id(我不想使用条形图列表视图)。chart1 cosnist 计数值 & chart2 包括美元值。我已经得到了这些值。但我想知道它是美元价值还是计数价值。所以我可以根据选择的图表显示吐司。
这是我的示例代码。
public void onValueSelected(Entry e, int dataSetIndex, Highlight h) {
View view;
TextView text;
switch (e.getXIndex()) {
case 0:
if (toast != null)
toast.cancel();
toast = Toast.makeText(getActivity(), "All Other Year Defectors: " +e.getVal(), Toast.LENGTH_SHORT);
view = toast.getView();
view.setBackgroundResource(R.color.all_odr_yr);
toast.setGravity(Gravity.TOP, 0, 950);
toast.show();
break;
case 1:
if (toast != null)
toast.cancel();
toast = Toast.makeText(getActivity(), "Last Year Defectors: " + e.getVal(), Toast.LENGTH_SHORT);
view = toast.getView();
view.setBackgroundResource(R.color.lst_yr_df);
toast.setGravity(Gravity.TOP, 0, 950);
toast.show();
break;