第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何為橫幅騰出空間

如何為橫幅騰出空間

紫衣仙女 2022-10-20 15:16:17
布局很簡(jiǎn)單,一個(gè) WebView 和一個(gè) Banner(AD)。我寫了一個(gè)如下的 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>這是創(chuàng)建橫幅運(yùn)行時(shí)的代碼。// 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 回答

?
慕標(biāo)5832272

TA貢獻(xiàn)1966條經(jīng)驗(yàn) 獲得超4個(gè)贊

android:layout_height="match_parent - 50dp"在Android中沒有這樣的選擇。


要集成 Facebook 受眾網(wǎng)絡(luò),您需要先創(chuàng)建一個(gè)帶有banner_container. 您可以考慮使用不同的布局結(jié)構(gòu),如下所示,使用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>


查看完整回答
反對(duì) 回復(fù) 2022-10-20
?
森林海

TA貢獻(xiàn)2011條經(jīng)驗(yàn) 獲得超2個(gè)贊

您可以使用現(xiàn)有布局,只需在 Webview 下方添加一個(gè) 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" />

然后使用您現(xiàn)有的代碼


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

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

adContainer.addView(adView);

adView.loadAd();


查看完整回答
反對(duì) 回復(fù) 2022-10-20
  • 2 回答
  • 0 關(guān)注
  • 127 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)