I got a very strange problem, which I spend now, trying to solve. When I try to run an Android application (both on my phone and in the emulator), I get nothing. The activity icon from the AndroidManifest file (android: label = "@ string / list_name") is configured correctly, but otherwise I just have a blinking screen.
I inserted a breakpoint along with 30 Log.d () right after super () in my onCreate () method, but the breakpoint was never reached, and Log.d () was never printed. Also, I am not getting any exceptions in logcat.
The application worked before, and I donβt know how it can be that a breakpoint is never reached.
PS: This is my main activity.
PS2: I cleaned the project, rebuilt it, rebooted. The problem has not disappeared :(
PS3: My onCreate () is quite long, but here is how it starts:
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.episode); Log.d("Very Strange", "This is never printed"); Log.d("Very Strange", "This is never printed");
My manifest file can be found here: http://pastebin.com/UcKbYeGC
source share