I need to Make a activity only runs in the 1st time the app runs,here i have made to add a toast in the 1st time, but I need to start an activity
Boolean isFirstRun = getSharedPreferences("PREFERENCE",MODE_PRIVATE).getBoolean("isfirstrun",true);
if(isFirstRun){
Toast.makeText(first_timerun.this,"first run",Toast.LENGTH_LONG).show();
getSharedPreferences("PREFERENCE",MODE_PRIVATE).edit().
putBoolean("isfirstrun",false).commit();
}