1

While I do know that you can hide the icon in the action bar by using setDisplayUseLogoEnabled, this takes a while and will result in the icon flashing for a second. Is there a way to avoid this by using themes or any other solution?

N West
  • 6,768
  • 25
  • 40
Fredrik Hedberg
  • 147
  • 2
  • 8

2 Answers2

1

assuming you're after a full screen view, try looking at the

WindowManager.LayoutParams.FLAG_FULLSCREEN

flag in the Window class

The Archetypal Paul
  • 41,321
  • 20
  • 104
  • 134
Matt
  • 11
  • 2
  • FLAG_FULLSCREEN is for the status bar. Fredrik is talking about the action bar (http://developer.android.com/guide/topics/ui/actionbar.html). – Pim Reijersen Jun 17 '11 at 11:52
0

Try using getActionBar().setDisplayOptions(ActionBar.DISPLAY_USE_LOGO)

jmng
  • 2,479
  • 1
  • 25
  • 38