Is there a way to hide the window title so that it won't get shown in fullscreen mode (
getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN,
LayoutParams.FLAG_FULLSCREEN)
) but then will appear upon
getWindow().clearFlags(LayoutParams.FLAG_FULLSCREEN)
?
requestWindowFeature(Window.FEATURE_NO_TITLE)
is not an option of course as this won't allow to get it back.