我正在尝试在我的应用中添加addwhirl,但是我没有展示任何广告,我在做以下事情

Manifest.xml

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />


Layout.xml

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.liverpool.activities"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/layout_ad" />


在代码中我正在关注

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


我在哪里做错了?

最佳答案

请记住,您只真正需要INTERNET权限。其余的是可选的。除非您的应用需要,否则您不应该询问GPS位置。如果您仅针对广告这样做,就会受到用户的负面反应。并且相信我,添加更多的地理位置定位不会增加您的收入。

关于android - Android admob和Adwhirl集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4622666/

10-12 03:41