gpt4 book ai didi

java - 屏幕底部 float 横幅广告

转载 作者:行者123 更新时间:2023-12-01 12:04:26 26 4
gpt4 key购买 nike

我有以下 xml 设计 -

 <LinearLayout 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="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:background="@drawable/wall"
android:orientation="vertical"
tools:context="com.ahl.XXXXX.MainActivity" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<Button
android:id="@+id/XXXXX"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:background="@color/XXXXX"
android:onClick="openXXXXX"
android:text="@string/XXXXX"
android:textColor="@color/White"/>

<Button
android:id="@+id/XXXXX"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.5"
android:background="@color/XXXXX"
android:onClick="openXXXXX"
android:text="@string/XXXXX"
android:textColor="@color/White"/>

<Button
android:id="@+id/XXXXX"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@color/XXXXX"
android:onClick="openXXXXX"
android:text="@string/XXXXX"
android:textColor="@color/White"/>

<Button
android:id="@+id/XXXXX"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@color/Gray"
android:onClick="openXXXXX"
android:text="@string/XXXXX"
android:textColor="@color/White"/>
</LinearLayout>

<com.google.android.gms.ads.AdView
android:id="@+id/adViewB1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-6805003743867442/4243673212" >

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

<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">

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

</ScrollView>

</LinearLayout>

我想在屏幕底部 float 横幅广告。我尝试使用相对布局,但它与 webview 配合得不好。我见过其他类似的问题,但这里的 webview 导致了一些问题,因为它覆盖了整个屏幕......所以我不得不使用线性布局。

我是否必须将广告 float 在 webview 或父 Linearlayout 上?

我可以在上述 XML 中进行哪些更改才能使广告出现在屏幕底部。

最佳答案

我怀疑你的意思是你希望AdView显示在屏幕底部。您确实不想让 AdView 漂浮在任何东西上。

使用 layout_weight="1" 将 WebView 设置为展开以填充未使用的空间,并让 AdView 显示在其下方。例如。

<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
>

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

</ScrollView>

<com.google.android.gms.ads.AdView
android:id="@+id/adViewB1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-6805003743867442/4243673212" >

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

关于java - 屏幕底部 float 横幅广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27731856/

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