我正在尝试将 vungle 广告集成到我的 android 应用程序中。几天前我有广告工作,从那时起我只改变了一些 xml 布局。现在 vungle 应用程序未加载。vungle 事件侦听器在运行我在 adUnavaliable 部分下的代码时工作。
我注意到当我将光标悬停在 vunglepub.playAd(); 上时出现了一条消息;行代码。
此消息是: 注意:此元素既没有附加源也没有附加 Javadoc,因此找不到 Javadoc。
我不确定这意味着什么。
这是我本节的代码:
public class FinishActivity extends android.app.Activity {
// get the VunglePub instance
final VunglePub vunglePub = VunglePub.getInstance();
//setting a different score for the application in order to give back to the previouos screen after ad was played
int score1 = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.endscreen);
vunglePub.setEventListener(vungleListener);
final int score = getIntent().getIntExtra("finalscore", -1);
score1 = score;
final View restart = findViewById(R.id.restartButton);
final View continueButton = findViewById(R.id.continueButton);
final TextView scorefinal = (TextView) findViewById(R.id.finalscore);
scorefinal.setText("Your Score: " + score);
restart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//if restarting thescore use this
Intent menuIntent = new Intent("com.nordquistproduction.robberducky.StartProgram");
startActivity(menuIntent);
finish();
}
});
continueButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//playing add
vunglePub.playAd();
}
});
}
private final EventListener vungleListener = new EventListener(){
@Override
public void onAdEnd(boolean wasCallToActionClicked) {
// Called when the user leaves the ad and control is returned to your application
/// if keeping the score use this
Intent intent = new Intent(getApplicationContext(), StartProgram.class);
intent.putExtra("startingscore", score1);
startActivity(intent);
finish();
}
@Override
public void onAdStart() {
// TODO Auto-generated method stub
}
@Override
public void onAdUnavailable(String arg0) {
// TODO Auto-generated method stub
finish();
}
@Override
public void onCachedAdAvailable() {
// TODO Auto-generated method stub
}
@Override
public void onVideoView(boolean arg0, int arg1, int arg2) {
// TODO Auto-generated method stub
}
};
@Override
protected void onPause() {
super.onPause();
vunglePub.onPause();
}
@Override
protected void onResume() {
super.onResume();
vunglePub.onResume();
}
我对为什么这个广告不再有效以及关于 java 文档的信息意味着什么感到非常困惑。
请帮忙!我已经坚持了一两天了。