Run activity only once, then always run the main one

大兔子大兔子 提交于 2019-12-01 14:00:16

问题


As the title says, Scenario is: On first time using the app, Show Screen A. Once you are done with screen A, the button will lead to you Screen B. From now on and forever, the Screen B will always be main "Screen"(Activity?) when you start the app. I am trying this 2 days and i can't get it. Somebody please explain a little detailed, or even better throw me a code.rar so i can research it. I'm going crazy with this!!!


回答1:


Just declare your Activity A as a launcher Activity in your AndroidManifest.xml and inside your Activity A onCreate() you can simply do this

private SharedPreferences mSharedPreferences;
private Editor mEditor;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_a);

    mSharedPreferences = getSharedPreferences("yourPrefsFileName", Context.MODE_PRIVATE));
    mEditor = mSharedPreferences.edit();

    if (mSharedPreferences.getBoolean("isfirstTime", true)) {
        mEditor.putBoolean("isFirstTime",false);
        mEditor.apply();
    }else{
         startActivity(new Intent(this, ActivityB.class));
         overridePendingTransition(0, 0);
         finish();
      }
}



回答2:


All you have to check like this

 SharedPreferences prefs = getSharedPreferences("mySHaredpref", Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = prefs.edit();
    boolean isFirst = prefs.getBoolean("isfirstTime", true);
    if(isFirst) {
        Intent intent = new Intent(this, ActivtyA.class);
        editor.putBoolean(KEY_IS_FIRST_TIME, false);
        editor.commit();
        startActivity(intent);
    }
    else{
      Intent intent = new Intent(this, MainActivty.class);
      startActivity(intent);
    }



回答3:


public class FirstActivity extends Activity {

   public void onCreate(Bundle saved){
      super.onCreate();

      SharedPreferences prefs = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);

     if (!prefs.getBoolean("firstStart", true)){
          startActivity(this, SecondActivity.class);
          finish(); // Finish the current one, is like forwarding directly to the second one
      }

   }
}

Whenever you are done with showing the first activity simple set the shared prefs boolean flag to false:

prefs.getEditor.setBoolean("firstStart", false).commit();



回答4:


SharedPreferences sp = getSharedPreferences("checking",MODE_PRIVATE);

String data = sp.getString("check", "");

if (data.equals("success")) {

//one time proccess code

//with follow code

SharedPreferences sp= getSharedPreferences("checking",MODE_PRIVATE);

Editor e1 = sp.edit();

e1.putString("check","success");

e1.commit();


} else {

// code for main

 Intent intent = new Intent(this, MainActivty.class);
 startActivity(intent);

}


来源:https://stackoverflow.com/questions/30143835/run-activity-only-once-then-always-run-the-main-one

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!