I have a Service that implements IntentService in OnHandleIntent as well. I want to get started.
Does not work:
Intent dialogIntent = new Intent(this, typeof(Activity1));
dialogIntent.AddFlags(ActivityFlags.NewTask);
this.StartActivity(dialogIntent);
what else can i try?
upd: AddFlags (ActivityFlags.NewTask); he does not help
source
share