I can\'t seem to find a straight forward yes or no to this in my searching. In Android, is there a way to use a conditional statement in case-switch? For example, with age being
You can't do this use if then statement.
if(age > 79) { //do stuff } else if(age > 50) { //do stuff } else { /do stuff }
etc...