This is a curiosity question but is there a way to delay the final line in an if statement.
eg:
if(m_Toolbar.getVisibility() == View.VISBILE) {
...........
m_Toolbar.setVisibility(View.GONE);
}
How would you go about delaying the final line like (ie.GONE)?