gpt4 book ai didi

android - 智能横幅容器 View 不会调整大小

转载 作者:行者123 更新时间:2023-11-29 17:46:00 25 4
gpt4 key购买 nike

给定主要 Activity 的内容 View 的以下布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".CordovaApp"
tools:ignore="MergeRootFrame" >

<LinearLayout
android:id="@+id/layout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_above="@+id/layout_ad" >
</LinearLayout>

<RelativeLayout
android:id="@+id/layout_ad"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical" >

<com.google.android.gms.ads.AdView
android:id="@+id/view_ad"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111" >
</com.google.android.gms.ads.AdView>
</RelativeLayout>

</RelativeLayout>

我无法让 AdMob 的智能横幅在方向改变时起作用。

如果我以横向模式开始,我会得到一个高度为 32 的智能横幅。将方向更改为纵向不会更改 layout_ad 高度,我会收到此错误

没有足够的空间来展示广告。需要 480x32 dp,但只有 320x455 dp。

最佳答案

如果您使用 SMART_BANNER 并处理您自己的配置更改,则需要重新创建 AdView。否则,AdView 尺寸不会改变,但请求仍然是新方向的全宽广告,因此它不适合。在这种情况下,用代码重新创建 AdView 可能比通过 XML 更容易。

关于android - 智能横幅容器 View 不会调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26703152/

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