gpt4 book ai didi

java - Android 应用中的 Admob 广告问题

转载 作者:行者123 更新时间:2023-12-01 13:29:31 26 4
gpt4 key购买 nike

我在使用 xml 嵌入广告时遇到问题。我尝试用 xml 来做到这一点,但是它告诉我错误:解析 XML 时出错:未绑定(bind)首选项 on com.google.ads.AdView:

执行此操作后,它不会显示,但我在 logCat 上看到传入的广告。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/activity_tuto_layout">



<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/card_shadow_base"
android:layout_marginTop="@dimen/default_vertical_margin"
android:layout_marginLeft="@dimen/default_horizontal_margin"
android:layout_marginRight="@dimen/default_horizontal_margin"
android:paddingBottom="2dp"
android:id="@+id/tuto_title_card">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/ic_launcher"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="false"
android:layout_alignParentTop="true" />

<TextSwitcher
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tuto_text_switcher"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/imageView">

</TextSwitcher>


</RelativeLayout>

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tuto_title_card"
android:layout_above="@+id/closeButton" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/closeButton"
android:layout_below="@+id/pager">

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

<Button
android:id="@+id/closeButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:background="@drawable/button_close"
android:paddingBottom="12dp"
android:paddingTop="12dp"
android:text="@string/tuto_button_close"
android:textColor="@color/white"
android:textSize="@dimen/home_text_size" />

在我的 java 文件中:

    AdView adView = (AdView)findViewById(R.id.adView);
AdRequest aRequest = new AdRequest();
aRequest.setTesting(true);
aRequest.addTestDevice("C0150396075730E422F8D1C212A5B658");
adView.loadAd(aRequest);

我在这里做错了什么?

最佳答案

您需要在第一个relativelayout中添加命名空间xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"

更改第一个RelativeLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/activity_tuto_layout">

与:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/activity_tuto_layout">

关于java - Android 应用中的 Admob 广告问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21647336/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com