Ok, I've been working on my first program for some time now, and for a while I was able to startActivity with a new Intent that created a new class just fine and went to the page, but now, for some reason it crashes. At first I thought it was in the startActivity, but I noticed in the debugger that it crashes on ClassName.class.newinstance(). Even before I startActivity, I put in ClassName c = ClassName.class.newinstance(), and it crashes there. I have no idea why, and I didn't even change anything in the class, nor do I have a constructor for the class, so it's not in there (at least from what I think). Why would class.newinstance() throw an exception???