0

I want to know if these actions are done in order or not inside on create

     mWebView.loadUrl("file:///android_asset/game.swf");

    AdView adView = (AdView)this.findViewById(R.id.adView);
    adView.loadAd(new AdRequest());
A.Jouni
  • 377
  • 2
  • 4
  • 14

1 Answers1

1

Yes. Statements within the body of a Java method will execute sequentially.

Bryan Herbst
  • 66,602
  • 10
  • 133
  • 120