0

我使用 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”方法。

任何想法?

谢谢!

4

3 回答 3

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"/>
于 2013-12-18T11:28:33.223 回答
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 中。

于 2012-11-25T23:13:41.640 回答
-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();

            }
            });
于 2014-09-16T11:56:24.130 回答