Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
When adding an activity, AndroidManifest.xml
set a flag . android:noHistory="true"
For example LoginActivity
, then the activity will not be present in the history chain.
<activity
android:name="ru.habrahabr.toster.LoginActivity"
android:label="@string/title_activity_login"
android:noHistory="true"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar" >
</activity>
@Override
public void onBackPressed() {
Intent intent = new Intent(this, B.class);
startActivity(intent);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question