my status bar in android 4.2.2 emulator is broken
Asked Answered
E

2

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.

Evenings answered 18/3, 2013 at 18:21 Comment(5)
have you tried turning it off and on again?Vagrant
Yes,I tried many times.(in ubuntu)Evenings
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?Quarto
"wipe user data" is helpless.I just create a common notification.Evenings
same 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.Longish
S
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.

Sudan answered 24/7, 2013 at 23:18 Comment(0)
P
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" />
Prudence answered 15/7, 2013 at 10:40 Comment(2)
Maybe reïnstall the sdk?Prudence
make a new emulator?? delete the whole AVD folderPrudence

© 2022 - 2024 — McMap. All rights reserved.