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());
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());
Yes. Statements within the body of a Java method will execute sequentially.