Admob广告不适用于真实设备

时间:2014-11-30 17:36:21

标签: android admob google-play-services

我试图在我的应用中使用新的google-service-libs设置admob广告。并且genymotion模拟器广告中的一切看起来都很好。但他们不像真正的设备,如我的星系王牌gt5830i与Android 2.3.6。我不知道是什么问题。

这里有一些代码:

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/titleBar"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/title_bar"
        android:orientation="horizontal" >

        <ImageView
            android:id="@+id/iconImg"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_gravity="center"
            android:layout_margin="5dip"
            android:background="@drawable/app_icon" />

        <ImageView
            android:id="@+id/titleImg"
            android:layout_width="160dp"
            android:layout_height="45dp"
            android:layout_gravity="center"
            android:layout_margin="5dip"
            android:background="@drawable/title" />

        <RelativeLayout
            android:id="@+id/pagerBtn"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:paddingRight="2dip" >

            <ImageButton
                android:id="@+id/pager"
                android:layout_width="45dp"
                android:layout_height="35dp"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:background="@drawable/button_clicked"
                android:scaleType="fitXY"
                android:src="@drawable/pager" />
        </RelativeLayout>
    </LinearLayout>

    <View
        android:layout_width="fill_parent"
        android:layout_height="5dip"
        android:background="@drawable/shadow" >
    </View>

<com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        ads:adSize="BANNER"
        ads:adUnitId="@string/adUnitId" />

    <ListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/buttons"
        android:divider="#351802"
        android:dividerHeight="2dp"
        android:listSelector="@drawable/list_selector" />

</LinearLayout>

我的Ad_Unit_Id保存在res /文件夹中的string.xml文件中。

java:

AdView ad = (AdView) findViewById(R.id.adView);

        AdRequest req = new AdRequest.Builder().build();

        ad.loadAd(req);

如果您需要更多代码,请告诉我。感谢

3 个答案:

答案 0 :(得分:1)

实际上我曾经面对这个问题,因为广告横幅所需的分辨率超过了真实手机中的可用空间。

出于这个原因,一旦你将广告放在这个上,水平测试应用程序..

答案 1 :(得分:0)

尝试根据设备动态定义广告adsize&#39;屏幕分辨率:

 AdSize adSize = AdSize.SMART_BANNER;  

    DisplayMetrics dm = getResources().getDisplayMetrics();  
    double density = dm.density * 160;
    double x = Math.pow(dm.widthPixels / density, 2);
    double y = Math.pow(dm.heightPixels / density, 2);
    double screenInches = Math.sqrt(x + y);   
    if (screenInches > 8) { // > 728 X 90
        adSize = AdSize.LEADERBOARD;
    } else if (screenInches > 6) { // > 468 X 60
        adSize = AdSize.MEDIUM_RECTANGLE;
    } else { // > 320 X 50
        adSize = AdSize.BANNER;
    }

    ad = (AdView) findViewById(R.id.adView);
     adView.setAdSize(adSize);
    AdRequest adRequest = new AdRequest.Builder().build();
     adView.loadAd(adRequest);

答案 2 :(得分:0)

它解决了我在其他设备上尝试过并且工作正常问题出在我的设备和我的朋友设备中,因为自定义ROM可能。谢谢你