我正在嘗試將一個vungle廣告整合到我的android應用中。我有幾天前的廣告工作,從那時起我只改變了一些xml佈局。現在v龍應用程序沒有加載。 vungle事件偵聽器在運行我在adUnavaliable部分下的代碼時起作用。vunglepub.playAd();注意:此元素既沒有附加源代碼也沒有附加Javadoc,因此沒有找到Javadoc
我注意到當我將光標懸停在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文檔的消息表示。
請幫忙!我現在一直堅持這一兩天。
對於第3步,我沒有看到「更改附件souurce」選項 – 2014-12-03 00:37:03
還有一條消息說:此類文件的JAR屬於容器「Android專用庫」,它不允許修改源附件在它的條目 – 2014-12-03 00:37:48
http://stackoverflow.com/questions/10075453/the-jar-of-this-class-file-belongs-to-container-android-dependencies-which-doe仍然這不是實際上是什麼導致你的應用程序不工作。 – Roger 2014-12-03 16:26:16