我试图按照android developer website上的说明将AdMob放入我的android应用程序中
,但我的MainActivity.java
不断出现错误
AdView.loadAd()错误无法解析符号loadAd
最佳答案
通过AdView
,我假设您没有引用该变量。
定义新的AdView
对象时,将采用以下方式:
AdView mAdView;
这意味着
mAdView
是此对象的名称,因此您可以使用该名称调用该方法。我知道这听起来不太清楚,但是我将向您展示我的意思:// Your new AdView is being cast to the view in your XML, and it is called 'mAdView'
AdView mAdView = (AdView) findViewById(R.id.adView);
// You are creating a new AdRequest here
AdRequest adRequest = new AdRequest.Builder().build();
// Finally, you load the ad (using mAdView as the name, and adRequest as your parameter)
mAdView.loadAd(adRequest);
确保您的代码类似于上面的代码,但总而言之,您需要使用
loadAd()
对象的名称(例如AdView
)来调用mAdView
。