這裏是我的MainActivity.java代碼應用程序工作但廣告不顯示?
package com.example.ads;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import com.google.android.gms.ads.*;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Look up the AdView as a resource and load a request.
AdView adView = (AdView)this.findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
下面是XML文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<com.google.android.gms.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
我的代碼的應用程序工作正常,只是在廣告中不會顯示出來。是因爲我有bot提供了一個AD_UNIT_ID或者是其他錯誤,比如將adview設置爲wrap_content,因爲它的加載高度是零。是非常非常慢的互聯網連接的原因?
上有ad.How兩側的白色空間做我的廣告
如果互聯網不工作,那麼這可能是問題所在。 –
adView.setApid(「154050」);這是我的appid用你自己的appid替換它,並希望它的工作:) ..也在你的XML文件中設置你的appid這一行ads:adUnitId =「yourappid」。 –
所以我應該用154050替換MY_AD_UNIT_ID。 – user3404195