I have a problem with the status bar visibility in Honeycomb (3.2) while showing an AlertDialog. In my HomeActivity I set the status bar visibility to hidden by the following code:
View v = findViewById(R.id.toplevelview);
v.setSystemUiVisibility(View.STATUS_BAR_HIDDEN);
So far this works great and should stay so in my whole application. But when I create a new AlertDialog via the AlertDialogBuilder and show it the status bar visibility isn't hidden any more. Do I have to set the status bar visibility explicitly again or something? I have tried a few things, but nothing themes to work.
Thanks for helping me!