0

アプリは見栄えがしますが、まだ広告はありません。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>

主要:

   <?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 を使用すれば、他に何もする必要がないという印象を受けました。

4

1 に答える 1

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 です。

于 2013-09-14T06:14:21.493 に答える