There are three solution for clear activity history.
1) You can write finish()
at the time of start new activity through intent.
2) Write android:noHistory="true"
in all <activity>
tag in Androidmanifest.xml file, using this if you are open new activity and you don't write finish() at that time previous activity is always finished, after write your activity look like this.
<activity
android:name=".Splash_Screen_Activity"
android:label="@string/app_name"
android:noHistory="true">
</activity>
3) write system.exit(0)
for exit from the application.