How do I programatically dim the system bar in Android 3.0 (Honeycomb)?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 9 down vote accepted

Try using the following code:

View v = findViewById(R.id.myview);
v.setSystemUiVisibility(View.STATUS_BAR_HIDDEN);
link|improve this answer
Is there a way to do this via XML? The reason I wish to do so is to change the functionality of existing compiled apps with only resource editing. – Jon Willis Sep 1 '11 at 21:19
i have tried with the view that i set in contentview. but it's not working. any idea? – gypsicoder Oct 26 '11 at 10:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.