AdMob似乎只适用于某些设备。不适用于星系s,s2

时间:2012-11-26 16:29:09

标签: android admob

我已经制作了一个应用程序并在其中嵌入了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>

谢谢!!!

0 个答案:

没有答案