Android Studio hiding itself after startup
See original GitHub issueReproduction:
- Just get Android Studio, install, it, open it, finish the setting up stage, then open it again.
- After it shows loading screen, wait like 2 seconds.
- Android Studio window just disapears, but the resources it uses show prove that it runs.
- Restarting qtile shows that now it’s in a static state, appearing on all groups/screens like some background image, but operatable.
Version: 0.13.0
Temporary workaround:
#for handling android studio hiding itself
@hook.subscribe.client_name_updated
def fixAndroidStudio(w):
if w.name == "Welcome to Android Studio":
for i in range(5):
time.sleep(5)
w.unhide()
I didn’t notice any other errors affecting any other window, just the Android Studio instance. Android Studio version 3.4.1
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Android hide/unhide app icon programmatically
Hide app's icon using below code: PackageManager p = getPackageManager(); ComponentName componentName = new ComponentName(this, com.apps.
Read more >Hide the status bar
This lesson describes how to hide the status bar on different versions of Android. Hiding the status bar (and optionally, the navigation bar) ......
Read more >Reveal or hide a view using animation
There are three common animations to use when showing or hiding a view. You can use the circular reveal animation, a crossfade animation, ......
Read more >Slow rendering
On recent versions of Android, it's one of the most common reasons for the UI Thread to stop running. Generally, the fix is...
Read more >Handle configuration changes
It is not recommended to handle configuration changes yourself due to the hidden complexity of handling the configuration changes.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hello @Borwe, thanks for opening this issue. Does adding
wmname = "LG3D"
in your config fix this?Thanks for the confirmation!