我的应用程序底部有一个横幅广告,它需要一些时间加载,而加载时却在其空白处显示空白,如下所示:
java - 如果横幅广告未加载,则会在其空白处显示空白-LMLPHP

我该如何解决这个问题。应提高横幅广告的加载速度,或对我的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中删除​​奇数个容器,这样可以代替:

<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/

10-14 09:49