question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Android Studio hiding itself after startup

See original GitHub issue

Reproduction:

  • 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:closed
  • Created 4 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
ramnescommented, May 24, 2019

Hello @Borwe, thanks for opening this issue. Does adding wmname = "LG3D" in your config fix this?

0reactions
ramnescommented, Jul 24, 2020

Thanks for the confirmation!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found