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.
Asked
Active
Viewed 2,131 times
7
-
1have you tried turning it off and on again? – Junfei Wang Mar 18 '13 at 18:25
-
Yes,I tried many times.(in ubuntu) – wangqi060934 Mar 18 '13 at 18:42
-
Did you try to wipe the data for the emulator? Is your project showing a notification? Are you using any custom views for the notification? – Drake Clarris Mar 18 '13 at 19:23
-
"wipe user data" is helpless.I just create a common notification. – wangqi060934 Mar 19 '13 at 05:49
-
3same just happened to me, but it works again after closing, wiping data and starting the emulator. It only happens if I pull the status bar but it doesn't reach the bottom. It bounces back to the top and then I can't drag it. – Maragues Apr 18 '13 at 15:46
2 Answers
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