誰かがまだこれを探している場合は、私が使用したコードを次に示します。
public class myActivity extends Activity implements AdListener{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
AdView adView = (AdView)this.findViewById(R.id.ads2);
adView.setAdListener(this);
adView.loadAd(new AdRequest());
}
public void onDismissScreen(Ad arg0) {
RelativeLayout rellayout = (RelativeLayout) findViewById(R.id.rellayout);
AdView adView = (AdView)this.findViewById(R.id.ads2);
rellayout.removeView(adView);
}
public void onFailedToReceiveAd(Ad arg0, ErrorCode arg1) {
// TODO Auto-generated method stub
}
public void onLeaveApplication(Ad arg0) {
// TODO Auto-generated method stub
}
public void onPresentScreen(Ad arg0) {
// TODO Auto-generated method stub
}
public void onReceiveAd(Ad arg0) {
// TODO Auto-generated method stub
}
}