AdRequest.Builder 无法解析为类型 [英] AdRequest.Builder cannot be resolved to a type

查看:13
本文介绍了AdRequest.Builder 无法解析为类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在将 AdMob 整合到我的应用中.我已按照开发人员页面中的步骤进行操作.但是 AdRequest.Builder() 用红色下划线表示:

I'm incorporating AdMob into my app. I've followed the steps in the developers page. However AdRequest.Builder() is being underlined with red and it says:

AdRequest 无法解析为类型

AdRequest cannot be resolved to a type

AdRequest.Builder 无法解析为类型.

AdRequest.Builder cannot be resolved to a type.

可能是什么问题?

import com.google.ads.AdRequest;
import com.google.ads.AdView;


public class FireRoomActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_fire_room);

        // Look up the AdView as a resource and load a request.
        AdView adView = (AdView)this.findViewById(R.id.adView);
        AdRequest adRequest = new AdRequest.Builder().build();   
        adView.loadAd(adRequest);
    }

在 xml 中,我已经展示了 admob:

In xml I've shown admob as such:

<com.google.android.gms.ads.AdView android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="bla bla"
                     ads:adSize="BANNER"/>

推荐答案

您的代码混合用于 Admob SDK (Google Play)Android(6.4.1 及更早版本)SDK)

Your code is mix for Admob SDK (Google Play) and Android (6.4.1 and earlier SDKs)

使用

import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;

AdRequest adRequest = new AdRequest.Builder().build();

<com.google.android.gms.ads.AdView android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="bla bla"
                     ads:adSize="BANNER"/>

如果您使用 Admob SDK (Google Play)

if you use Admob SDK (Google Play)

或者使用

import com.google.ads.AdRequest;
import com.google.ads.AdView;

AdRequest adRequest = new AdRequest();

<com.google.ads.AdView android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="bla bla"
                     ads:adSize="BANNER"/>

如果你使用早期的 SDK

if you use earlies SDK

对于 Admob SDK (Google Play) 不要忘记更改命名空间

For Admob SDK (Google Play) not forget to change namespase

xmlns:ads="http://schemas.android.com/apk/res-auto"

这篇关于AdRequest.Builder 无法解析为类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆