我已经制作了一个应用程序并在其中嵌入了 AdMob,如教程中所示。
它似乎在我的三星 S3 上工作正常,也可以在模拟器上显示。
在三星 S 和 S2 上试用时,广告根本不显示..
知道为什么吗?
这是我的代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_calc);
Intent intent = getIntent();
match = intent.getStringExtra(StartActivity.EXTRA_MESSAGE);
adView = new AdView(this, AdSize.BANNER, "a150b2362fba949");
LinearLayout layout = (LinearLayout)findViewById(R.id.calcL);
layout.addView(adView);
adView.loadAd(new AdRequest()); }
and XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/calcL"
android:layout_gravity="top"
android:gravity="top"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="10"
>
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="8" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="30sp"
android:scaleType="fitXY"
android:src="@drawable/calc" />
</LinearLayout>
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_weight="2" />
</LinearLayout>
谢谢!!!