How do I increment the variable DOW by 1 each new day?
So it would be:
monday dow = 1;
tuesday dow = 2;
wednesday dow = 3
thursday dow = 4;
friday dow = 5;
saturday dow = 6;
sunday down = 7;
monday dow = 8;
and it wont reset until it gets to 365 (1 Year), then once I have this variable, I can use it in this;
int dow = 0;
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
counter++;
if (counter >= list.length)
counter = 0;
quote.setText(list [dow]);
}