AdMob设置如此接近我只需要一些帮助

时间:2013-09-14 04:22:55

标签: android cordova admob banner

该应用看起来很棒,但仍然没有广告。我有13个请求和100%填充率,所以我知道它的发送,但我不能得到任何显示。我重新设计了应用程序,并保持简单的几个div和按钮。我希望我只是有一些不合适的东西,或者你有一个更好的(仍然简单)的方式。我需要为3个以上的应用程序工作。非常感谢您的专业知识,谢谢。

清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.appsclamation.wowmedesigns"
android:versionCode="1"
android:versionName="1.0" >
<meta-data android:value="true" android:name="ADMOB_ALLOW_LOCATION_FOR_ADS" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18" />

<application
android:label="@string/app_name" >
<activity
    android:name=".DefaultActivity"
    android:label="@string/app_name" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
 </intent-filter>
 </activity>
 <activity 
   android:name="com.google.ads.AdActivity"
  android:configChanges="keyboard|keyboardHidden|orientation|
  screenLayout|uiMode|screenSize|smallestScreenSize" />
  </application>
  </manifest>

MAIN:

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

   <com.google.ads.AdView android:id="@+id/adView"
    ads:adUnitId="My_ID"
    ads:adSize="BANNER"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    ads:loadAdOnCreate="true"/>
   </LinearLayout>

提前致谢...

DefaultActivity :(源代码?)

 package com.appsclamation.wowmedesigns;

import android.app.Activity;
import android.os.Bundle;
import com.phonegap.*;

public class DefaultActivity extends DroidGap
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        super.setIntegerProperty( "splashscreen", R.drawable.splash );
        super.loadUrl("file:///android_asset/www/index.html", 1000);
    }
}

我的印象是,如果您在MAIN中使用LoadonCreate,则无需执行任何其他操作。

1 个答案:

答案 0 :(得分:0)

您只需要在主要活动中执行此操作:

Adview adView = (AdView) findViewById(R.id.adView);
        adView.loadAd(new AdRequest());

在你的清单中:

<activity
            android:name="com.google.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />

在主要活动中使用的布局:

<com.google.ads.AdView
                android:id="@+id/adView"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                ads:adSize="SMART_BANNER"
                ads:adUnitId="@string/ADMOB_PublisherId"
                ads:loadAdOnCreate="true" />

其中ADMOB_PublisherId是您在注册应用程序后生成的ID