AdView不在线性布局的底部显示广告-为什么?

时间:2019-06-09 14:20:52

标签: android admob android-linearlayout android-scrollview adview

我正在尝试在屏幕底部显示admob adview,但是它不起作用。如果文本较短(不需要滚动),它将在文本下方显示广告,但是如果文本较长(需要滚动),则广告视图将根本不会显示。 无论文本多长或短,我都希望在屏幕底部显示adview。我已经在这里待了几个小时,但一直想不通。

这是我的Activity.xml

cookies

2 个答案:

答案 0 :(得分:1)

添加一个新属性 android:layout_weight =“ 1” 并按如下所示修改滚动视图的高度。

    android:layout_height="0dp"
    android:layout_weight="1"

因此,滚动视图的最终属性集如下所示,

<ScrollView
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1">

答案 1 :(得分:0)

尝试此代码


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="680dp"
        android:orientation="vertical"
        android:background="@color/backgroundColor" >
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:orientation="horizontal"

            android:background="@color/backgroundColor">

            <TextView
                android:id="@+id/tvWordDetail"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:textColor="@color/textColorPrimary"
                android:textSize="20sp"
                android:gravity="center_vertical"/>

            <ImageButton
                android:id="@+id/textToSpeech"
                android:layout_width="48dp"
                android:layout_height="48dp"
                android:background="?actionBarItemBackground"
                app:srcCompat="@drawable/ic_volume"/>

            <ImageButton
                android:id="@+id/btnBookmark"
                android:layout_width="48dp"
                android:layout_height="48dp"
                android:contentDescription="@string/add_bookmark"
                android:background="?actionBarItemBackground"
                app:srcCompat="@drawable/ic_bookmark_border"/>

        </LinearLayout>


        <ScrollView
            android:id="@+id/scrollView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/backgroundColor"
                android:elevation="1.46dp"
                android:orientation="vertical"
                android:paddingLeft="16dp"
                android:paddingTop="10dp"
                android:paddingRight="16dp">


                <TextView
                    android:id="@+id/tvWordDefinition"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:textColor="@color/textColorSecondary"
                    android:textSize="18sp" />

            </LinearLayout>

        </ScrollView>
    </LinearLayout>




    <com.google.android.gms.ads.AdView xmlns:ads="http://schemas.android.com/apk/res-auto"
        android:id="@+id/adViewDetail"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        ads:adSize="SMART_BANNER"
        ads:adUnitId="@string/admob_banner_ad_detail">

    </com.google.android.gms.ads.AdView>

</LinearLayout>