7

Today I found the status bar in android 4.2.2 emulator is broken.I cannot pull it down. I have no idea what happened.

wangqi060934
  • 1,552
  • 16
  • 23

2 Answers2

2

For what it's worth, as per this SO, it seems like it might be a bug in android. No response from Google as of the writing of this comment.

Community
  • 1
  • 1
abhishekmukherg
  • 754
  • 1
  • 4
  • 12
1

Try to make a little app wich pulls it down:

    StatusBarManager statusBar = (StatusBarManager) getSystemService(STATUS_BAR_SERVICE);
statusBar.expand();

Permission is required in manifest:

<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
tim687
  • 2,256
  • 2
  • 17
  • 28