我想在网络视图下方放置一个Facebook Audience网络横幅广告。我不希望广告与我的网络视图重叠。几天来我都未能实现。
这是我的布局文件,我将广告放置在约束布局下的网络视图之后
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/web_view_relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main">
<View
android:id="@+id/divider"
android:layout_width="0dp"
android:layout_height="1dp"
android:background="?android:attr/listDivider"
app:layout_constraintTop_toTopOf="parent" />
<WebView
android:id="@+id/web_view_documentation"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:id="@+id/native_banner_ad_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent" />
</android.support.constraint.ConstraintLayout>
我已将AppBarLayout放置在Web视图上方。如果添加约束,我的Web视图将开始与应用栏重叠。
我的Web视图的高度和宽度设置为match_parent。我希望我的网络视图能够容纳广告后剩余的全部空间。因此,基本上,如果我的广告的高度为100dp,则网络视图应该填充剩余的空间,而不会重叠或重叠。预先感谢。
答案 0 :(得分:1)
您可以将视图垂直排列,以便在广告的var select = document.getElementsByClassName("box")[1]
容器的高度设置为WebView
时,RelativeRelayout
会占用所有剩余空间:
wrap_content
答案 1 :(得分:0)
只需将布局文件替换为以下内容,即可使用。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main">
<WebView
android:id="@+id/web_view_documentation"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:layout_above="@id/native_banner_ad_container"/>
<RelativeLayout
android:id="@+id/native_banner_ad_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
</RelativeLayout>