如何最佳地检查应用程序的状态?

时间:2015-08-29 08:25:02

标签: android android-activity

我开发Android应用程序。它需要保存Internet数据和登录/密码对。我需要在每项活动中检查一下。如何以最佳方式做到这一点?我的解决方案:

我创建了BaseActivity类:

public class BaseActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        checkRequirements();
    }

    private void checkRequirements() {
        if (needToCheckInternetConnection())
            checkInternetConnection();
            //check other requirements
    }

    private void checkInternetConnection() {
        if (!Updater.getInstance(context).checkInternetConnection()) {
            Bundle data = new Bundle();
            data.putSerializable(SplashScreenActivity.FIELD_ACTION, SplashScreenActivity.Action.SHOW_TEXT);
            data.putString(SplashScreenActivity.FIELD_TEXT, getString(R.string.splashScreenInternetNotAvailable));
            changeActivity(SplashScreenActivity.class, data);
        }
    }

    protected void changeActivity(Class<?> goTo, Bundle data) {
        Intent intent = new Intent(context, goTo);
        if (data != null)
            intent.putExtras(data);
        startActivity(intent);
        finish();
    }
}

我扩展了所有活动类。

finish()无效。那么,如何更改该架构或强制使用finish()方法?

0 个答案:

没有答案