0

我是初学者,我正在尝试在我的应用程序中设置一个 admob 添加。但是我有一些我无法管理的错误。

xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<com.google.ads.AdView android:id="@+id/main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true"/>
</RelativeLayout>

清单文件。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.admob"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"  android:targetSdkVersion="17" />

<application
  android:allowBackup="true"  android:icon="@drawable/ic_launcher"      android:label="@string/app_name" android:theme="@style/AppTheme" >

<activity
android:name="com.example.admob.MainActivity"
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|scre enSize|smallestScreenSize" />

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

Java 代码:

package com.example.admob;

import com.google.ads.AdRequest;
import com.google.ads.AdSize;
import com.google.ads.AdView;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;

public class MainActivity extends Activity 
{
private static final String MY_AD_UNIT_ID = null;
private AdView adView;

@Override
protected void onCreate(Bundle savedInstanceState) 
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
adView = new AdView(this, AdSize.BANNER, MY_AD_UNIT_ID);
RelativeLayout main = (RelativeLayout)findViewById(R.id.main);
main.addView(adView);
adView.loadAd(new AdRequest());
AdRequest adRequest = new AdRequest();
adRequest.addTestDevice(AdRequest.TEST_EMULATOR);             
adRequest.addTestDevice("TEST_DEVICE_ID");
}

 @Override
public void onDestroy() {
 adView.destroy();
 super.onDestroy();
 }
}

当 Activity 启动时会发生这种类型的错误onFailedToReceivedAd(InvalidAdRequest)
我不知道是什么问题。

4

2 回答 2

0

您没有加载AdRequest已注册测试设备的文件。将您的代码更改为:

//....
main.addView(adView);

AdRequest adRequest = new AdRequest();
adRequest.addTestDevice(AdRequest.TEST_EMULATOR);             
adRequest.addTestDevice("TEST_DEVICE_ID");
adView.loadAd(adRequest);
于 2013-06-25T01:02:31.677 回答
0

在包含 adview 的 relativelayout 中,您是否在 adview 之后附加了内容布局。如果是这样,什么是 android:layout_width 和 android:layout_height 值。如果您同时使用 fill_parent/match_parent,那么您的 adview 将永远不会显示。

诀窍是将相对布局更改为线性布局。然后对于这个线性布局中的内容布局,设置它的 android:layout_width="fill_parent" 和 android:layout_height="0dp"。为内容布局添加一个新属性 android:layout_weight="1"。这些的作用是要求内容布局在广告视图占据其位置后容纳线性布局的剩余空间。希望这可以帮助。

于 2013-07-19T06:59:34.377 回答