import org.evergreen.android.searchCatalog.SearchCatalog;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.AlertDialog;
@Override
public void onCreate(Bundle savedInstanceState) {
- // TODO Auto-generated method stub
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
setContentView(R.layout.bookbagitem_list);
// header portion actions
import org.evergreen.android.globals.Utils;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.AlarmManager;
@Override
public void onCreate(Bundle savedInstanceState) {
- // TODO Auto-generated method stub
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
thisActivity = this;
setContentView(R.layout.checkout_list);
import org.evergreen.android.globals.Utils;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.ProgressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
setContentView(R.layout.fines);
import org.evergreen.android.globals.Utils;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.AlertDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
+
context = this;
setContentView(R.layout.hold_details);
globalConfigs = GlobalConfigs.getGlobalConfigs(this);
import org.evergreen.android.searchCatalog.ImageDownloader;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.ProgressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
setContentView(R.layout.holds_list);
import org.evergreen.android.searchCatalog.RecordInfo;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.DatePickerDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
setContentView(R.layout.place_hold);
globalConfigs = GlobalConfigs.getGlobalConfigs(this);
import org.evergreen.android.R;
import org.evergreen.android.barcodescan.camera.CameraManager;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.AlertDialog;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
// Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
import org.evergreen.android.R;
import org.evergreen.android.accountAccess.AccountAccess;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.content.Context;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
setContentView(R.layout.advanced_search);
import org.evergreen.android.globals.NoNetworkAccessException;
import org.evergreen.android.globals.Utils;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.app.ProgressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
setContentView(R.layout.copy_information_more);
gl = GlobalConfigs.getGlobalConfigs(context);
import org.evergreen.android.utils.ui.TestFragmentAdapter;
import org.evergreen.android.utils.ui.UnderlinePageIndicator;
import org.evergreen.android.views.AccountScreenDashboard;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.ProgressDialog;
import android.content.Context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
+
setContentView(R.layout.simple_underlines);
search = SearchCatalog.getInstance((ConnectivityManager)getSystemService(CONNECTIVITY_SERVICE));
import org.evergreen.android.accountAccess.fines.FinesActivity;
import org.evergreen.android.accountAccess.holds.HoldsListView;
import org.evergreen.android.searchCatalog.SearchCatalogListView;
+import org.evergreen.android.views.splashscreen.SplashActivity;
import android.app.Activity;
import android.content.Intent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ if (!SplashActivity.isAppInitialized()) {
+ SplashActivity.restartApp(this);
+ return;
+ }
+
setContentView(R.layout.dashbord_account);
- myAccountButton = (Button) findViewById(R.id.my_account_button);
+ myAccountButton = (Button) findViewById(R.id.my_account_button);
myAccountButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
});
homeButton = (Button) findViewById(R.id.library_logo);
-
homeButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {