gpt4 book ai didi

Android admob 和 Adwhirl 集成

转载 作者:行者123 更新时间:2023-11-29 18:22:30 24 4
gpt4 key购买 nike

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

list .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" />

布局.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 位置。如果你只是为了广告而这样做,你会得到用户的负面 react 。相信我,添加更多地理定位不会增加您的收入。

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com