Search in sources :

Example 1 with LineChartOnValueSelectListener

use of lecho.lib.hellocharts.listener.LineChartOnValueSelectListener in project CoCoin by Nightonke.

the class ReportViewFragment method onViewCreated.

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    IS_EMPTY = RecordManager.getInstance(CoCoinApplication.getAppContext()).RECORDS.isEmpty();
    mScrollView = (ObservableScrollView) view.findViewById(R.id.scrollView);
    MaterialViewPagerHelper.registerScrollView(getActivity(), mScrollView, null);
    expenseTV = (TextView) view.findViewById(R.id.expense);
    expenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    expenseTV.setText(CoCoinUtil.GetInMoney(0));
    tagsTV = (TextView) view.findViewById(R.id.tags);
    tagsTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    tagsTV.setText("");
    title = (TextView) view.findViewById(R.id.title);
    title.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    pieLayout = (LinearLayout) view.findViewById(R.id.pie_layout);
    pieLayout.setVisibility(View.GONE);
    pieTitle = (TextView) view.findViewById(R.id.pie_title);
    pieTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    pie = (PieChartView) view.findViewById(R.id.chart_pie);
    pie.setChartRotationEnabled(false);
    pie.setOnValueTouchListener(new PieChartOnValueSelectListener() {

        @Override
        public void onValueSelected(int p, SliceValue sliceValue) {
            // snack bar
            String text;
            tagId = Integer.valueOf(String.valueOf(sliceValue.getLabelAsChars()));
            double percent = sliceValue.getValue() / expense * 100;
            if ("zh".equals(CoCoinUtil.GetLanguage())) {
                text = CoCoinUtil.GetSpendString((int) sliceValue.getValue()) + CoCoinUtil.GetPercentString(percent) + "\n" + "于" + CoCoinUtil.GetTagName(tagId);
            } else {
                text = CoCoinUtil.GetSpendString((int) sliceValue.getValue()) + " (takes " + String.format("%.2f", percent) + "%)\n" + "in " + CoCoinUtil.GetTagName(tagId);
            }
            if ("zh".equals(CoCoinUtil.GetLanguage())) {
                if (selectYear) {
                    dialogTitle = from.get(Calendar.YEAR) + "年" + "\n" + CoCoinUtil.GetSpendString((int) sliceValue.getValue()) + "于" + CoCoinUtil.GetTagName(tagId);
                } else {
                    dialogTitle = from.get(Calendar.YEAR) + "年" + (from.get(Calendar.MONTH) + 1) + "月" + "\n" + CoCoinUtil.GetSpendString((int) sliceValue.getValue()) + "于" + CoCoinUtil.GetTagName(tagId);
                }
            } else {
                if (selectYear) {
                    dialogTitle = CoCoinUtil.GetSpendString((int) sliceValue.getValue()) + " in " + from.get(Calendar.YEAR) + "\n" + "on " + CoCoinUtil.GetTagName(tagId);
                } else {
                    dialogTitle = CoCoinUtil.GetSpendString((int) sliceValue.getValue()) + " in " + CoCoinUtil.GetMonthShort(from.get(Calendar.MONTH) + 1) + " " + from.get(Calendar.YEAR) + "\n" + "on " + CoCoinUtil.GetTagName(tagId);
                }
            }
            Snackbar snackbar = Snackbar.with(mContext).type(SnackbarType.MULTI_LINE).duration(Snackbar.SnackbarDuration.LENGTH_SHORT).position(Snackbar.SnackbarPosition.BOTTOM).margin(15, 15).backgroundDrawable(CoCoinUtil.GetSnackBarBackground(-3)).text(text).textTypeface(CoCoinUtil.GetTypeface()).textColor(Color.WHITE).actionLabelTypeface(CoCoinUtil.GetTypeface()).actionLabel(mContext.getResources().getString(R.string.check)).actionColor(Color.WHITE).actionListener(new ActionClickListener() {

                @Override
                public void onActionClicked(Snackbar snackbar) {
                    new GetData(from, to, tagId, dialogTitle).execute();
                }
            });
            SnackbarManager.show(snackbar);
            if (p == lastPieSelectedPosition) {
                return;
            } else {
                lastPieSelectedPosition = p;
            }
        }

        @Override
        public void onValueDeselected() {
        }
    });
    iconRight = (MaterialIconView) view.findViewById(R.id.icon_right);
    iconRight.setOnClickListener(this);
    iconLeft = (MaterialIconView) view.findViewById(R.id.icon_left);
    iconLeft.setOnClickListener(this);
    emptyTip = (TextView) view.findViewById(R.id.empty_tip);
    emptyTip.setTypeface(CoCoinUtil.GetTypeface());
    if (RecordManager.getInstance(CoCoinApplication.getAppContext()).RECORDS.size() != 0) {
        emptyTip.setText(mContext.getResources().getString(R.string.report_view_please_select_data));
    } else {
        emptyTip.setText(mContext.getResources().getString(R.string.report_view_no_data));
        isEmpty = true;
    }
    highestTagLayout = (LinearLayout) view.findViewById(R.id.highest_tag_layout);
    highestTagLayout.setVisibility(View.GONE);
    highestTagTitle = (TextView) view.findViewById(R.id.highest_tag_title);
    highestTagTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestFirst = (LinearLayout) view.findViewById(R.id.highest_first);
    highestFirst.setOnClickListener(this);
    highestTagIcon = (ImageView) view.findViewById(R.id.highest_tag_icon);
    highestTagText = (TextView) view.findViewById(R.id.highest_tag_text);
    highestTagText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestTagExpenseTV = (TextView) view.findViewById(R.id.highest_tag_expense);
    highestTagExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestTagRecord = (TextView) view.findViewById(R.id.highest_tag_sum);
    highestTagRecord.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestTags = (ExpandedListView) view.findViewById(R.id.highest_tags);
    highestTagsLayout = (ExpandableRelativeLayout) view.findViewById(R.id.expand_highest_tag);
    highestTagMore = (LinearLayout) view.findViewById(R.id.highest_tag_more);
    highestTagMore.setOnClickListener(this);
    highestTagMoreText = (TextView) view.findViewById(R.id.highest_tag_more_text);
    highestTagMoreText.setTypeface(CoCoinUtil.getInstance().GetTypeface());
    highestTags.setOnItemClickListener(this);
    lowestTagLayout = (LinearLayout) view.findViewById(R.id.lowest_tag_layout);
    lowestTagLayout.setVisibility(View.GONE);
    lowestTagTitle = (TextView) view.findViewById(R.id.lowest_tag_title);
    lowestTagTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestFirst = (LinearLayout) view.findViewById(R.id.lowest_first);
    lowestFirst.setOnClickListener(this);
    lowestTagIcon = (ImageView) view.findViewById(R.id.lowest_tag_icon);
    lowestTagText = (TextView) view.findViewById(R.id.lowest_tag_text);
    lowestTagText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestTagExpenseTV = (TextView) view.findViewById(R.id.lowest_tag_expense);
    lowestTagExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestTagRecord = (TextView) view.findViewById(R.id.lowest_tag_sum);
    lowestTagRecord.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestTags = (ExpandedListView) view.findViewById(R.id.lowest_tags);
    lowestTagsLayout = (ExpandableRelativeLayout) view.findViewById(R.id.expand_lowest_tag);
    lowestTagMore = (LinearLayout) view.findViewById(R.id.lowest_tag_more);
    lowestTagMore.setOnClickListener(this);
    lowestTagMoreText = (TextView) view.findViewById(R.id.lowest_tag_more_text);
    lowestTagMoreText.setTypeface(CoCoinUtil.getInstance().GetTypeface());
    lowestTags.setOnItemClickListener(this);
    lineLayout = (LinearLayout) view.findViewById(R.id.line_layout);
    lineLayout.setVisibility(View.GONE);
    lineTitle = (TextView) view.findViewById(R.id.line_title);
    lineTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    line = (LineChartView) view.findViewById(R.id.chart_line);
    line.setZoomEnabled(false);
    line.setOnValueTouchListener(new LineChartOnValueSelectListener() {

        @Override
        public void onValueSelected(int lineIndex, int pointIndex, PointValue value) {
            // snack bar
            String text;
            double percent = value.getY() / expense * 100;
            if ("zh".equals(CoCoinUtil.GetLanguage())) {
                if (selectYear) {
                    text = "在" + reportYear + " " + CoCoinUtil.getInstance().GetMonthShort((int) value.getX() + 1) + "\n" + CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent);
                } else {
                    text = "在" + CoCoinUtil.getInstance().GetMonthShort(reportMonth) + " " + ((int) value.getX() + 1) + CoCoinUtil.getInstance().GetWhetherFuck() + "\n" + CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent);
                }
            } else {
                if (selectYear) {
                    text = CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent) + "\n" + "in " + reportYear + " " + CoCoinUtil.getInstance().GetMonthShort((int) value.getX() + 1);
                } else {
                    text = CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent) + "\n" + "on " + CoCoinUtil.getInstance().GetMonthShort(reportMonth) + " " + ((int) value.getX() + 1) + CoCoinUtil.getInstance().GetWhetherFuck();
                }
            }
            if ("zh".equals(CoCoinUtil.GetLanguage())) {
                if (selectYear) {
                    dialogTitle = "在" + reportYear + " " + CoCoinUtil.getInstance().GetMonthShort((int) value.getX() + 1) + "\n" + CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent);
                } else {
                    dialogTitle = "在" + CoCoinUtil.getInstance().GetMonthShort(reportMonth) + " " + ((int) value.getX() + 1) + CoCoinUtil.getInstance().GetWhetherFuck() + "\n" + CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent);
                }
            } else {
                if (selectYear) {
                    dialogTitle = CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent) + "\n" + "in " + reportYear + " " + CoCoinUtil.getInstance().GetMonthShort((int) value.getX() + 1);
                } else {
                    dialogTitle = CoCoinUtil.GetSpendString((int) value.getY()) + CoCoinUtil.GetPercentString(percent) + "\n" + "on " + CoCoinUtil.getInstance().GetMonthShort(reportMonth) + " " + ((int) value.getX() + 1) + CoCoinUtil.getInstance().GetWhetherFuck();
                }
            }
            final Calendar tempFrom = Calendar.getInstance();
            final Calendar tempTo = Calendar.getInstance();
            if (selectYear) {
                tempFrom.set(reportYear, (int) value.getX(), 1, 0, 0, 0);
                tempFrom.add(Calendar.SECOND, 0);
                tempTo.set(reportYear, (int) value.getX(), tempFrom.getActualMaximum(Calendar.DAY_OF_MONTH), 23, 59, 59);
                tempTo.add(Calendar.SECOND, 0);
            } else {
                tempFrom.set(reportYear, reportMonth - 1, (int) value.getX() + 1, 0, 0, 0);
                tempFrom.add(Calendar.SECOND, 0);
                tempTo.set(reportYear, reportMonth - 1, (int) value.getX() + 1, 23, 59, 59);
                tempTo.add(Calendar.SECOND, 0);
            }
            Snackbar snackbar = Snackbar.with(mContext).type(SnackbarType.MULTI_LINE).duration(Snackbar.SnackbarDuration.LENGTH_SHORT).position(Snackbar.SnackbarPosition.BOTTOM).margin(15, 15).backgroundDrawable(CoCoinUtil.GetSnackBarBackground(-3)).text(text).textTypeface(CoCoinUtil.GetTypeface()).textColor(Color.WHITE).actionLabelTypeface(CoCoinUtil.GetTypeface()).actionLabel(mContext.getResources().getString(R.string.check)).actionColor(Color.WHITE).actionListener(new ActionClickListener() {

                @Override
                public void onActionClicked(Snackbar snackbar) {
                    new GetData(tempFrom, tempTo, Integer.MIN_VALUE, dialogTitle).execute();
                }
            });
            SnackbarManager.show(snackbar);
            if (pointIndex == lastLineSelectedPosition) {
                return;
            } else {
                lastLineSelectedPosition = pointIndex;
            }
        }

        @Override
        public void onValueDeselected() {
        }
    });
    iconRightLine = (MaterialIconView) view.findViewById(R.id.icon_right_line);
    iconRightLine.setOnClickListener(this);
    iconLeftLine = (MaterialIconView) view.findViewById(R.id.icon_left_line);
    iconLeftLine.setOnClickListener(this);
    highestMonthLayout = (LinearLayout) view.findViewById(R.id.highest_month_layout);
    highestMonthLayout.setVisibility(View.GONE);
    monthTitle = (TextView) view.findViewById(R.id.month_title);
    monthTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestFirstMonth = (LinearLayout) view.findViewById(R.id.highest_first_month);
    highestFirstMonth.setOnClickListener(this);
    highestFirstIcon = (TextView) view.findViewById(R.id.highest_month_icon);
    highestFirstIcon.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestFirstText = (TextView) view.findViewById(R.id.highest_month_text);
    highestFirstText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestFirstExpenseTV = (TextView) view.findViewById(R.id.highest_month_expense);
    highestFirstExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestFirstRecord = (TextView) view.findViewById(R.id.highest_month_sum);
    highestFirstRecord.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestMonths = (ExpandedListView) view.findViewById(R.id.highest_month);
    highestMonths.setOnItemClickListener(this);
    highestMonthsLayout = (ExpandableRelativeLayout) view.findViewById(R.id.expand_highest_month);
    highestLast = (LinearLayout) view.findViewById(R.id.highest_last_month);
    highestLast.setOnClickListener(this);
    highestLastIcon = (TextView) view.findViewById(R.id.lowest_month_icon);
    highestLastIcon.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestLastText = (TextView) view.findViewById(R.id.lowest_month_text);
    highestLastText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestLastExpenseTV = (TextView) view.findViewById(R.id.lowest_month_expense);
    highestLastExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestLastRecord = (TextView) view.findViewById(R.id.lowest_month_sum);
    highestLastRecord.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestMonthMore = (LinearLayout) view.findViewById(R.id.highest_month_more);
    highestMonthMore.setOnClickListener(this);
    highestMonthMoreText = (TextView) view.findViewById(R.id.highest_month_more_text);
    highestMonthMoreText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    averageMonthText = (TextView) view.findViewById(R.id.average_month_text);
    averageMonthText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    averageMonthExpenseTV = (TextView) view.findViewById(R.id.average_month_expense);
    averageMonthExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    averageMonthRecordTV = (TextView) view.findViewById(R.id.average_month_sum);
    averageMonthRecordTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestDayLayout = (LinearLayout) view.findViewById(R.id.highest_day_layout);
    highestDayLayout.setVisibility(View.GONE);
    highestDayTitle = (TextView) view.findViewById(R.id.highest_day_title);
    highestDayTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestFirstDay = (LinearLayout) view.findViewById(R.id.highest_first_day);
    highestFirstDay.setOnClickListener(this);
    highestDayIcon = (TextView) view.findViewById(R.id.highest_day_icon);
    highestDayIcon.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestDayText = (TextView) view.findViewById(R.id.highest_day_text);
    highestDayText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestDayExpenseTV = (TextView) view.findViewById(R.id.highest_day_expense);
    highestDayExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestDayRecord = (TextView) view.findViewById(R.id.highest_day_sum);
    highestDayRecord.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    highestDays = (ExpandedListView) view.findViewById(R.id.highest_days);
    highestDaysLayout = (ExpandableRelativeLayout) view.findViewById(R.id.expand_highest_day);
    highestDayMore = (LinearLayout) view.findViewById(R.id.highest_day_more);
    highestDayMore.setOnClickListener(this);
    highestDayMoreText = (TextView) view.findViewById(R.id.highest_day_more_text);
    highestDayMoreText.setTypeface(CoCoinUtil.getInstance().GetTypeface());
    highestDays.setOnItemClickListener(this);
    lowestDayLayout = (LinearLayout) view.findViewById(R.id.lowest_day_layout);
    lowestDayLayout.setVisibility(View.GONE);
    lowestDayTitle = (TextView) view.findViewById(R.id.lowest_day_title);
    lowestDayTitle.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestFirstDay = (LinearLayout) view.findViewById(R.id.lowest_first_day);
    lowestFirstDay.setOnClickListener(this);
    lowestDayIcon = (TextView) view.findViewById(R.id.lowest_day_icon);
    lowestDayIcon.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestDayText = (TextView) view.findViewById(R.id.lowest_day_text);
    lowestDayText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestDayExpenseTV = (TextView) view.findViewById(R.id.lowest_day_expense);
    lowestDayExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestDayRecord = (TextView) view.findViewById(R.id.lowest_day_sum);
    lowestDayRecord.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    lowestDays = (ExpandedListView) view.findViewById(R.id.lowest_days);
    lowestDaysLayout = (ExpandableRelativeLayout) view.findViewById(R.id.expand_lowest_day);
    lowestDayMore = (LinearLayout) view.findViewById(R.id.lowest_day_more);
    lowestDayMore.setOnClickListener(this);
    lowestDayMoreText = (TextView) view.findViewById(R.id.lowest_day_more_text);
    lowestDayMoreText.setTypeface(CoCoinUtil.getInstance().GetTypeface());
    lowestDays.setOnItemClickListener(this);
    averageDayText = (TextView) view.findViewById(R.id.average_day_text);
    averageDayText.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    averageDayExpenseTV = (TextView) view.findViewById(R.id.average_day_expense);
    averageDayExpenseTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    averageDayRecordTV = (TextView) view.findViewById(R.id.average_day_sum);
    averageDayRecordTV.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    foot = (TextView) view.findViewById(R.id.foot);
    foot.setTypeface(CoCoinUtil.getInstance().typefaceLatoLight);
    foot.setVisibility(View.GONE);
    if (IS_EMPTY) {
        emptyTip.setVisibility(View.GONE);
    }
    button = (FloatingActionButton) view.findViewById(R.id.button);
    button.setOnClickListener(this);
    new GetSelectListData(false).execute();
}
Also used : PieChartOnValueSelectListener(lecho.lib.hellocharts.listener.PieChartOnValueSelectListener) PointValue(lecho.lib.hellocharts.model.PointValue) Calendar(java.util.Calendar) SliceValue(lecho.lib.hellocharts.model.SliceValue) ActionClickListener(com.nispok.snackbar.listeners.ActionClickListener) Snackbar(com.nispok.snackbar.Snackbar) LineChartOnValueSelectListener(lecho.lib.hellocharts.listener.LineChartOnValueSelectListener)

Aggregations

Snackbar (com.nispok.snackbar.Snackbar)1 ActionClickListener (com.nispok.snackbar.listeners.ActionClickListener)1 Calendar (java.util.Calendar)1 LineChartOnValueSelectListener (lecho.lib.hellocharts.listener.LineChartOnValueSelectListener)1 PieChartOnValueSelectListener (lecho.lib.hellocharts.listener.PieChartOnValueSelectListener)1 PointValue (lecho.lib.hellocharts.model.PointValue)1 SliceValue (lecho.lib.hellocharts.model.SliceValue)1