如何将adwhirl代码集成到Android应用程序中

时间:2012-07-24 15:16:01

标签: android admob adwhirl

我想在我的测试应用程序中集成admob代码,这是我遵循的步骤。

布局文件如下所示

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="bottom"
        android:id="@+id/layout_ad">

</LinearLayout>

清单文件看起来像这样

<?xml version="1.0" encoding="utf-8"?>

<uses-sdk android:minSdkVersion="8" />
    <uses-permission android:name="android.permission.INTERNET" />

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

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

最后这里代码看起来如何

public class Dummyads2Activity extends Activity {//implements AdWhirlInterface{
/** Called when the activity is first created. */

private AdWhirlLayout adWhirlLayout;

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


   try{
        AdManager.setTestDevices( new String[] { AdManager.TEST_EMULATOR } );
        LinearLayout layout = (LinearLayout)findViewById(R.id.layout_ad);
        AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this, "my adwhirl id");
        Display d = this.getWindowManager().getDefaultDisplay();
        RelativeLayout.LayoutParams adWhirlLayoutParams = new RelativeLayout.LayoutParams(d.getWidth(), 72);
        layout.addView(adWhirlLayout, adWhirlLayoutParams);
    }catch(Exception e){
        //Log.e(TAG, "Unable to create AdWhirlLayout", e);
    }

}

如果我喜欢这样,我的应用会崩溃,并且不会显示任何广告。请帮助我解决问题。

1 个答案:

答案 0 :(得分:0)

这实际上取决于您使用的AdMob和AdWhirl的版本。我将谈谈AdMob SDK v6.1.0和AdWhirl v3.2.0,它们是目前最新的版本。

由于这一行,你可能会崩溃:

AdManager.setTestDevices( new String[] { AdManager.TEST_EMULATOR } );

这看起来像传统的AdMob AdManager; AdWhirl使用Google AdMob SDK。无论如何,如果您想要使用AdWhirl测试广告,您希望通过AdWhirl设置测试,而不是通过广告网络。因此,删除上面的行并设置测试模式,如下所示:

AdWhirlTargeting.setTestMode(true);

此外,您的清单需要拥有您正在调解的网络的所有权限和活动定义的超集。对于AdMob,您需要添加:

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

如果您仍然遇到错误,发布一些日志记录输出将非常有用。如果你正在使用Eclipse,你可以从Window找到logcat - &gt;显示视图 - &gt;其他...... - &gt; Android - &gt; logcat的。或者,您可以使用Android的adb工具使用adb logcat从命令行获取logcat输出。