protected void bindTodaysSpend(int year, int month, int dayOfMonth) { double spend = expenseData.getTodaysSpend( getApplicationContext(), DateHelper.makeDateString(year, month, dayOfMonth)); lblTodaysSpendValue.setText(ExpenseContentProvider.MONEY_FORMAT.format(spend)); }
private void bindTodaysSpend() { double spend = expenseData.getTodaysSpend(getApplicationContext(), getSelectedDate()); lblTodaysSpendValue.setText(ExpenseContentProvider.MONEY_FORMAT.format(spend)); }