我有一个不同屏幕的游戏。要在特定屏幕上显示广告,我使用下面使用线程的方法。一切正常,但广告不断加载并弹出新广告。我希望广告只加载一次。我怎样才能创建一个线程,以便只调用一次广告方法。
public void displayAd(){
runOnUiThread(new Runnable() {
public void run() {
startAppAd.showAd(); // show the ad
startAppAd.loadAd(); // load the next ad
}
});
}