I have:
@Override
public void onActivityCreated( Bundle bundle )
{
super.onActivityCreated( bundle );
AdView mAdView = (AdView) getView().findViewById( R.id.adView );
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd( adRequest );
}
It tells me, "cannot find symbol variable adView" for the second line in the braces. Why is this?
Thanks.