0

我测试应用程序是否添加应该有一个框,说将活动添加到我的清单中,并且一旦我添加,现在那里什么都没有,那个框是。这是我在我的应用程序中放入的所有代码我意识到现在有些是无用的,因为我尝试过的所有不同的东西我的应用程序都在不需要的代码中,如果你看到一些我可以删除的代码,请告诉我。

主要问题 为什么广告没有出现

JAVA

AdView myAdView;


    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.game_play);  


        myAdView=(AdView)findViewById(R.id.adView);
        AdRequest adRequest = new AdRequest();
        adRequest.addTestDevice(AdRequest.TEST_EMULATOR);
        myAdView.loadAd(adRequest);

主要布局

 xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/android_drinking"     
    tools:context=".PlayerInput" >


    <com.google.ads.AdView
            android:id="@+id/adView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            ads:adUnitId="a14ff402be4457c"
            ads:adSize="BANNER"
            ads:testDevices="TEST_EMULATOR"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            ads:loadAdOnCreate="true"/>

属性 xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="com.admob.android.ads.AdView">
<attr name="backgroundColor" format="color" />
<attr name="primaryTextColor" format="color" />
<attr name="secondaryTextColor" format="color" />
<attr name="keywords" format="string" />
<attr name="refreshInterval" format="integer" />
</declare-styleable>
</resources>

安卓清单

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<meta-data android:value="YOUR_ID_HERE" android:name="ADMOB_PUBLISHER_ID" />
<!-- AdMobActivity definition -->
<activity android:name="com.admob.android.ads.AdMobActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="orientation|keyboard|keyboardHidden" />
<!-- Track Market installs -->
<receiver android:name="com.admob.android.ads.analytics.InstallReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>

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

    </application>

    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

  </manifest>

链接到我今晚正在尝试的教程。

4

3 回答 3

0

我通过电子邮件将应用程序发送给自己的添加功能将其安装在我妻子的平板电脑上,他们必须将其设置为测试错误我也从应用程序中删除了 java 部分。

于 2013-01-03T12:44:04.070 回答
0

如果您正确地向 admob 发出请求,能否请您检查一下 LogCat?

有时唯一的问题是请求因不良 admob 库存而失败。

于 2013-01-03T13:46:38.357 回答
0

这是包含所有需要信息的简单教程

如何在 Android 应用中添加 Google 广告(Google Admob 广告

开发此应用程序时请牢记

  1. 您需要 Google 广告发布商 ID。
  2. 您需要在类路径中添加 Google AdMob Ads SDK.jar 文件
  3. 您的应用目标必须是 API 13 或更高版本
  4. 另外PL不要忘记添加互联网权限
  5. 您需要在应用程序标签的清单文件中添加谷歌广告活动,这种方式

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

希望对你有帮助!!

于 2013-01-03T13:19:30.880 回答