为了账号安全,请及时绑定邮箱和手机立即绑定

如何为横幅腾出空间

如何为横幅腾出空间

紫衣仙女 2022-10-20 15:16:17
布局很简单,一个 WebView 和一个 Banner(AD)。我写了一个如下的 XML:<LinearLayout    android:id="@+id/banner_container"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_alignParentBottom="true"    android:orientation="vertical">    <WebView        android:id="@+id/webview"        android:layout_width="match_parent"        android:layout_height="match_parent"></WebView></LinearLayout>这是创建横幅运行时的代码。// This code is copied & pasted from AudienceNetwork's guide pageadView = new AdView(this, "PLACEMENT_ID", AdSize.BANNER_HEIGHT_50);LinearLayout adContainer = (LinearLayout) findViewById(R.id.banner_container);adContainer.addView(adView);adView.loadAd();此代码不起作用,横幅显示在屏幕外。所以,我寻找的android:layout_height="match_parent - 50dp"就像calc在 CSS 中一样。
查看完整描述

2 回答

?
慕标5832272

TA贡献1966条经验 获得超4个赞

android:layout_height="match_parent - 50dp"在Android中没有这样的选择。


要集成 Facebook 受众网络,您需要先创建一个带有banner_container. 您可以考虑使用不同的布局结构,如下所示,使用RelativeLayout.


<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent">


    <WebView

        android:id="@+id/webview"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_above="@+id/banner_container" />


    <LinearLayout

        android:id="@+id/banner_container"

        android:layout_width="match_parent"

        android:layout_height="50dp"

        android:layout_alignParentBottom="true"

        android:orientation="vertical" />

</RelativeLayout>


查看完整回答
反对 回复 2022-10-20
?
森林海

TA贡献2011条经验 获得超2个赞

您可以使用现有布局,只需在 Webview 下方添加一个 LinearLayout。不要忘记在 Webview 中添加 android:layout_weight="1"


<LinearLayout

android:layout_width="match_parent"

android:layout_height="match_parent"

android:layout_alignParentBottom="true"

android:orientation="vertical">

<WebView

    android:id="@+id/webview"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:layout_weight="1"></WebView>


<LinearLayout

    android:id="@+id/banner_container"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:orientation="vertical" />

然后使用您现有的代码


adView = new AdView(this, "PLACEMENT_ID", AdSize.BANNER_HEIGHT_50);

LinearLayout adContainer = (LinearLayout) findViewById(R.id.banner_container);

adContainer.addView(adView);

adView.loadAd();


查看完整回答
反对 回复 2022-10-20
  • 2 回答
  • 0 关注
  • 93 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信