我正在尝试将一些 mobclix 广告实现到基于 wiengine 的 android 应用程序中,该应用程序基本上是 cocos2d 的 java 端口。有没有人试过这样做?如果是这样,请告诉我如何;)
需要明确的基本问题是,由于 wiengine 使用基于非标准视图的类 (WYGLSurfaceView),因此您无法轻松地在现有广告视图之上添加另一个广告视图。
谢谢,
缺口
我正在尝试将一些 mobclix 广告实现到基于 wiengine 的 android 应用程序中,该应用程序基本上是 cocos2d 的 java 端口。有没有人试过这样做?如果是这样,请告诉我如何;)
需要明确的基本问题是,由于 wiengine 使用基于非标准视图的类 (WYGLSurfaceView),因此您无法轻松地在现有广告视图之上添加另一个广告视图。
谢谢,
缺口
使用 Activity.addContentView,示例:
FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.FILL_PARENT,
FrameLayout.LayoutParams.WRAP_CONTENT);
lp.gravity = Gravity.BOTTOM;
lp.bottomMargin = 10;
AdView ad = new AdView(this);
ad.setResId("xxx");
ad.setGoneIfFail(true);
addContentView(ad, lp);
ad.requestAd();
好吧,我不确定它是否会回答您的问题,但我们可以推出一项新活动:
Intent toInfoIntent = new Intent(Director.getInstance().getContext(), InfoActivity.class);
Director.getInstance().getContext().startActivity(toInfoIntent);