I have a project where my manifest is opening .MainActivity by default
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
I want to be able to open an info screen on top of that app where it tells about my app. from there the user can press back to get back to the Main Activity.