我在我的Android应用程序的简单间质性DFP(DFP广告)的广告。 当我触摸十字架复出的应用程序,该应用程序会自行关闭。
该代码是可以的,因为它在另一个应用程序。 有没有人有一个想法?
这里是清单中的代码:
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize"/>
在我想要的酒吧活动:
...extends Activity implements OnTouchListener, OnClickListener, OnErrorListener, AdListener, OnCompletionListener...
和酒吧的代码:
private DfpInterstitialAd interstitial;
interstitial = new DfpInterstitialAd(this, "THE_PUB_CODE");
AdRequest adRequest = new AdRequest();
interstitial.loadAd(adRequest);
interstitial.setAdListener(this);