use of cl.smartcities.isci.transportinspector.backend.Bus in project androidApp by InspectorIncognito.
the class SplashScreenActivity method onNewIntent.
@Override
public void onNewIntent(Intent intent) {
Bundle extras = intent.getExtras();
if (extras != null) {
if (extras.containsKey("EVALUATION_BUS")) {
Bus busEvaluation = getIntent().getParcelableExtra("EVALUATION_BUS");
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.cancel(81287);
bundle.putParcelable("EVALUATION_BUS", busEvaluation);
}
}
}
Aggregations