现在我一直想把adwhirl集成到我的应用程序中,它没有显示来自admob提供者的任何添加。但它会显示自家广告似乎没有任何问题
我添加了日志cat文件
为了验证admob的工作,我也使用相同的应用程序,它没有显示任何问题
任何帮助将不胜感激
提前致谢
11-19 15:18:33.149: DEBUG/AdWhirl SDK(572): Showing ad:
11-19 15:18:33.149: DEBUG/AdWhirl SDK(572): nid: 95eb0bdbbc484f8a86e69d15e04f7644
11-19 15:18:33.149: DEBUG/AdWhirl SDK(572): name: admob
11-19 15:18:33.149: DEBUG/AdWhirl SDK(572): type: 1
11-19 15:18:33.149: DEBUG/AdWhirl SDK(572): key: a14ce50397c3043
11-19 15:18:33.149: DEBUG/AdWhirl SDK(572): key2:
11-19 15:18:33.149: INFO/dalvikvm(572): Failed resolving Lcom/adwhirl/adapters/AdMobAdapter; interface 88 'Lcom/admob/android/ads/AdListener;'
11-19 15:18:33.149: WARN/dalvikvm(572): Link of class 'Lcom/adwhirl/adapters/AdMobAdapter;' failed
11-19 15:18:33.159: WARN/AdWhirl SDK(572): Caught an exception in adapter:
11-19 15:18:33.159: WARN/AdWhirl SDK(572): java.lang.Exception: Invalid adapter
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at com.adwhirl.adapters.AdWhirlAdapter.handle(AdWhirlAdapter.java:141)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at com.adwhirl.AdWhirlLayout.handleAd(AdWhirlLayout.java:163)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at com.adwhirl.AdWhirlLayout.access$3(AdWhirlLayout.java:151)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at com.adwhirl.AdWhirlLayout$HandleAdRunnable.run(AdWhirlLayout.java:316)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at android.os.Handler.handleCallback(Handler.java:587)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at android.os.Handler.dispatchMessage(Handler.java:92)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at android.os.Looper.loop(Looper.java:123)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at android.app.ActivityThread.main(ActivityThread.java:4627)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at java.lang.reflect.Method.invokeNative(Native Method)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at java.lang.reflect.Method.invoke(Method.java:521)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
11-19 15:18:33.159: WARN/AdWhirl SDK(572): at dalvik.system.NativeStart.main(Native Method)
代码添加在
下面private static final String COMPANY_NAME = "soft";
private static final String APP_NAME = "firstapplication";
private static LogindbAdapter dbAdapter;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
AdManager.setInTestMode(true);
AdView adView=(AdView)findViewById(R.id.ad);
adView.requestFreshAd();
dbAdapter=new LogindbAdapter(getBaseContext());
LinearLayout layout=(LinearLayout) findViewById(R.id.layout_ad);
try
{
AdWhirlAdapter.setGoogleAdSenseCompanyName(COMPANY_NAME);
AdWhirlAdapter.setGoogleAdSenseAppName(APP_NAME);
;
ZestAdzAdapter.setGoogleAdSenseAppName(APP_NAME);
ZestAdzAdapter.setGoogleAdSenseCompanyName(COMPANY_NAME);
AdManager.setPublisherId("a14ce50397c3043");
AdWhirlLayout adWhirlLayout=new AdWhirlLayout(this,"XXXXXXXX");
//handle(adWhirlLayout,this.Ration);
final int DIP_WIDTH = 320;
final int DIP_HEIGHT = 52;
final float DENSITY = getResources().getDisplayMetrics().density;
int scaledWidth = (int) (DENSITY * DIP_WIDTH + 0.5f);
int scaledHeight = (int) (DENSITY * DIP_HEIGHT + 0.5f);
RelativeLayout.LayoutParams adwp =
new RelativeLayout.LayoutParams(scaledWidth, scaledHeight);
layout.addView(adWhirlLayout,adwp);
layout.invalidate();
}
catch(Exception e)
{
Log.e("ad whirl", "un able to create adwhirl layout", e);
}
答案 0 :(得分:2)
我有类似的问题,
尝试仔细检查,如果每个网络 sdk 都已集成(eclipse,设置,构建路径),包含在jar文件中。
好看&&最好的祝福, 麦克
编辑:
嘿Kariyachan,因为这么晚才回答,他没有意识到答案。 Admob提供的广告很少.. zestadz不支持德国应用的广告..所以这对我来说是一个问题:(....但我可以推荐...... http://www.millennialmedia.com/ ...:=)他们总是有东西显示...... :)我真的很抱歉..我的广告问题仍在继续..我也没有获得基于位置的广告...这就是我现在所处的问题..还有一件事改善了我的广告效果 ... a * dd AdWhirlInterface *(实施)到活动开始你的广告from ..并设置接口监听器..通过代码...类似A * dWhirlAdapter.setInterfaceAdapter(this) *(如果它是当前活动)