So I want an intent to start an Activity that simply brings up a dialog popup box telling the user how to use the app.
I have the code:
private final
Just change
Intent i = new Intent(this, About.class);
to
Intent i = new Intent(Classname.this, About.class);
Hope it works.