- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几周来我一直在努力解决这个问题。 StackOverflow 中还有其他一些类似的问题,AdWhirl 文档网站( one 和 two )中也有一些(显然已解决)类似的问题,但这个错误仍然困扰着我。
AdWhirl 文档相当不完整且令人困惑。我遵循的步骤:
.
<manifest>
[...]
<application>
[...]
<activity android:name="com.google.ads.AdActivity"
android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize" />
<meta-data android:value="[AdWhirl ID]" android:name="ADWHIRL_KEY"/>
</application>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
</manifest>
.
<com.adwhirl.AdWhirlLayout
android:id="@+id/adwhirl_layout"
android:layout_width="fill_parent"
android:layout_height="72dip" />
.
public class XXX extends ListActivity implements AdWhirlInterface {
[...]
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.YYY);
initAds();
[...]
}
[...]
private void initAds() {
AdWhirlManager.setConfigExpireTimeout(1000 * 60 * 5);
AdWhirlTargeting.setTestMode(false);
AdWhirlLayout adWhirlLayout = (AdWhirlLayout)findViewById(R.id.adwhirl_layout);
adWhirlLayout.setAdWhirlInterface(this);
}
public void adWhirlGeneric() {
Log.e(AdWhirlUtil.ADWHIRL, "In adWhirlGeneric()");
}
}
项目构建目标:Google API Android 4.0模拟器:Google API 2.1 (API 7)
我做错了什么?
我没有看到任何广告,而且一直收到“nextRation is null!”错误。
最佳答案
这看起来很像简约的 AdWhirl 实现。仅供引用,您不需要 adWhirlGeneric()
方法。
nextRation 可能为 null 的原因有几个。
注意:AdWhirl 中的 Ration
表示广告网络设置,例如网络名称及其对应的网络 ID。
再次检查 logcat 输出,看看是什么导致了 nextRation is null 错误。它是一个 JSONException 吗?如果是这样,则意味着您遇到了问题#1。日志是否表示您找到了 AdMob 配给,然后 AdMob 以 onFailedToReceiveAd
响应,然后您得到 nextRation 为空?然后你有问题#2。
关于android - 尝试在 Android 中使用 Adwhirl + AdMob 时出现 "nextRation is null!"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8862585/
几周来我一直在努力解决这个问题。 StackOverflow 中还有其他一些类似的问题,AdWhirl 文档网站( one 和 two )中也有一些(显然已解决)类似的问题,但这个错误仍然困扰着我。
我是一名优秀的程序员,十分优秀!