1

We have a Xamarin.Forms app. Our latest update introduced an issue for some users (namely Samsung S3, Galaxy S7 Edge, and S5 Neo).

We can test and replicate in-house on S5 Neo. On launch, screen becomes unresponsive and looks like this:

S5 Neo screenshot

Debugging leads me to think issue is with:

protected override void OnResume()
    {
        base.OnResume();

        Task startupWork = new Task(() =>
        {

        });


        startupWork.ContinueWith(t =>
        {
            StartActivity(new Intent(Application.Context, typeof(MainActivity)));
        }, TaskScheduler.FromCurrentSynchronizationContext());

        startupWork.Start();

    }

I have tried:

I'm running out of ideas. Can you help?

  • 1
    could provide more details about the startupwork and why is the intent inside it? – memsranga Apr 14 '19 at 20:59
  • 1
    @shanranm I updated above whole functions and if intent I use directly then on next screen all side menu displaying blank with white background. – jigneshpatel91 Apr 15 '19 at 03:45

0 Answers0