我使用AdMob添加了一个横幅,
我想检查一下是否点击过。
这是我的代码:
public class CalcActivity extends Activity {
private AdView adView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_calc);
adView = new AdView(this, AdSize.BANNER, "a150b2362fba949");
LinearLayout layout = (LinearLayout)findViewById(R.id.calcL);
layout.addView(adView);
adView.loadAd(new AdRequest());
}
我尝试过adView.SetAdListener方法,但它似乎没有“OnClick”方法。
任何想法?
谢谢!
答案 0 :(得分:0)
您是否尝试将视图置于广告上方并在事件中放置onClickListener而不停止传播。
编辑:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
//Your layout here
<FrameLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_gravity="bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="a150240343d3227"
ads:adSize="SMART_BANNER"
ads:loadAdOnCreate="true"/>
<View android:layout_width="match_parent" android:id="@+id/myidview"
android:layout_height="match_parent"/>
</FrameLayout>
</LinearLayout>
不确定它的工作我没有测试你明白我的意思吗?将点击监听器放到myidview。
答案 1 :(得分:0)
删除活动文件中与广告相关的所有代码,并将此代码发布到相应的xml文件
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="a150b2362fba949"
android:layout_above="@+id/tv1a"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
答案 2 :(得分:-1)
对于那些仍然不知道如何:
的人使用AdListener
adView.setAdListener(new AdListener() {
public void onDismissScreen(Ad arg0) {
Toast.makeText(BannerAdListener.this, "Back to app", Toast.LENGTH_SHORT).show();
}
public void onFailedToReceiveAd(Ad arg0, ErrorCode arg1) {
Toast.makeText(BannerAdListener.this, "Error loading", Toast.LENGTH_SHORT).show();
}
public void onLeaveApplication(Ad arg0) {
Toast.makeText(BannerAdListener.this, "Left app", Toast.LENGTH_SHORT).show();
}
public void onPresentScreen(Ad arg0) {
Toast.makeText(BannerAdListener.this, "Sumthin sumthin", Toast.LENGTH_SHORT).show();
}
public void onReceiveAd(Ad arg0) {
Toast.makeText(BannerAdListener.this, "Ad Received", Toast.LENGTH_SHORT).show();
}
});