我正按照android developer website上的说明,在我的Android应用程序中添加 AdMob
,但我一直在MainActivity.java
AdView.loadAd()错误无法解析符号loadAd
答案 0 :(得分:2)
按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
。