Reputation: 41
I've been programming an app for Android Studio, however for some reason the app stopped loading properly suddenly, what I mean by that is the App loads up and all you can see is the Blue bar on top (without the app title) and blank white space below (and it shouldn't be blank).
so here are some things I tried:
Any help is extremely appreciated.
btw I'm using Windows 10 - 64 bit.
[![appearentely the blue title bar was just in my imagination][1]][1]
found the problem in the code thanks for all the help for those wondering I basically made an infinite loop accidentialy in the method getDays without realizing.
Upvotes: 1
Views: 725
Reputation: 107
Do you know every time when you override a method, you must reference super. Before setcontentView call super.onCreate(savedInstanceState);
Upvotes: 1
Reputation: 2065
If you actually adding stuff to the activity's layout then try clean and build.
Upvotes: 1