gpt4 book ai didi

java - 当横幅广告未加载时,其位置会出现空白

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

我的应用程序底部有一个横幅广告。加载需要一些时间。加载时,其位置会出现一个空白,如下所示: enter image description here

我该如何解决这个问题。应该提高横幅广告的加载速度或对我的 xml 布局进行一些操作。

这是 xml:

<?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"
tools:context="com.example.android.gametalks.MainActivity"

>

<LinearLayout
android:layout_centerInParent="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/no_internet_view"
android:gravity="center"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="No Internet Connection!"/>
<Button
android:id="@+id/retry_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Retry"/>
</LinearLayout>



<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_above="@id/adView">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
></ListView>
</LinearLayout>


</LinearLayout>


<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"

ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
</com.google.android.gms.ads.AdView>

</RelativeLayout>

最佳答案

您可以从列表容器中删除 android:layout_above="@id/adView 并添加到您的 ListView paddingBottom = height_of_your_banner (或关于它)并添加 android:clipToPadding="false"。现在您的 ListView 将填满整个屏幕,如果您滚动到底部 - 您将能够看到所有项目,而不会与横幅重叠。您还可以从 ListView 中删除奇怪的容器 所以而不是:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_above="@id/adView">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
></ListView>
</LinearLayout>


</LinearLayout>

将只是:

<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

关于java - 当横幅广告未加载时,其位置会出现空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47246501/

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