The problem I am having is that the onCreate() method within my MainActivity cannot seem to start another activity.
I have code working so that when I click a button
Try this instead:
Intent aboutScreen = new Intent(MainActivity.this, AboutActivity.class); this.startActivity(aboutScreen);