Skip to content
Advertisement

Unable to add window — token null is not valid; is your activity running error. How can I solve it?

I have a login screen. Switching to the HomeScreenActivity when the user logs in. I want to show a popup window message about user information when the activity is opened. But I’m getting an ‘Unable to add window — token null is not valid; is your activity running?’ error. I have a popup layout that name is popup_user_information. I’m using view binding for this project. How can I solve it?

JavaScript

Advertisement

Answer

You’re trying to show the popup too early. The view on OnCreate is still not created so try to move the popup() to OnViewCreated()

JavaScript

or use View.post so it goes into the main thread queue and gets executed after the other pending tasks are finished

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement