底部的AdMob横幅-将Linearlayout转换为RelativeLayout



我对android很陌生。我正试图在一个应用程序的底部添加一个广告横幅,实际上是在其中的两个活动中。我认为Linearlayout不是正确的做法。

  1. 所以请帮我将Linearlayout转换为RelativeLayout

此外,在运行应用程序时,只有activity_entry.xml示例谷歌横幅显示。view_home.xml横幅只显示静态空白。

  1. 如何使横幅智能?我的意思是,我希望它只在有横幅显示的时候出现,而不是作为一个静态的空白

activity_entry.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:ads="http://schemas.android.com/apk/res-auto"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:orientation="vertical">
<include layout="@layout/view_toolbar"/>
<fragment
    android:id="@+id/entry_fragment"
    class="net.etuldan.sparss.fragment.EntryFragment"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />
<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="SMART_BANNER"
    ads:adUnitId="ca-app-pub-3940256099942544/6300978111"
    android:layout_gravity="center_horizontal">
</com.google.android.gms.ads.AdView>

view_home.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:showIn="@layout/activity_home"
android:weightSum="1">
<include layout="@layout/view_toolbar"/>
<fragment
    android:id="@+id/entries_list_fragment"
    android:name="net.etuldan.sparss.fragment.EntriesListFragment"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />
<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="SMART_BANNER"
    ads:adUnitId="ca-app-pub-3940256099942544/6300978111"
    android:layout_gravity="center_horizontal">
</com.google.android.gms.ads.AdView>

以下是获得您想要的东西的一些技巧:

看看这里,把它变成relativelout:adMob|底部的智能横幅?

基本上,关键代码是你应该有

android:layout_alignParentBottom="true"

如果有帮助的话,你可以嵌套你的布局。。。是否。

第二部分:考虑使用adListener,并使用onReceiveAd()和onFailedToReceiveAd()来动态格式化布局。

在这里查找adListener:上的一些要点

如何知道AdMob广告是否已加载

相关内容

  • 没有找到相关文章

最新更新