如何在不同的屏幕上显示相同的广告横幅?

时间:2012-08-16 10:24:49

标签: android android-activity admob banner-ads

我已将AdMob横幅添加到应用的第一个屏幕。现在我需要在其他一些屏幕上(不同的活动)。如何在不重新加载横幅的情况下实施它以避免额外使用流量?

感谢。

2 个答案:

答案 0 :(得分:4)

对于想要演示代码的人,我会在我的应用中实现这一点。

使用一个活动+多个碎片

  1. 创建一个MainActivity,此活动管理所有片段。在下面的布局文件中,FrameLayout是片段的容器(用于显示应用的实际内容),片段是Admob广告横幅的容器。
  2. ===

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <FrameLayout
                android:id="@+id/container"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_above="@+id/adFragment"/>
            <fragment
                android:id="@+id/adFragment"
                android:name="com.jiyuzhai.wangxizhishufazidian.MainActivity$AdFragment"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true" />
    </RelativeLayout>
    

    ===

    1. 在MainActivity中添加第一个片段,这是应用程序启动时的第一个屏幕。
    2. ==

      public class MainActivity extends Activity {
          @Override
          protected void onCreate(Bundle savedInstanceState) {
              super.onCreate(savedInstanceState);
              setContentView(R.layout.activity_main);
              if (savedInstanceState == null) {
                  getFragmentManager().beginTransaction()
                          .add(R.id.container, new MainFragment())
                          .commit();
              }
          }
      }
      

      ==

      1. 根据需要切换片段,横幅将始终位于(在所有屏幕的底部)。
      2. ==

        FragmentManager fragmentManager = getFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        fragmentTransaction.replace(R.id.container, fragment);
        fragmentTransaction.addToBackStack("null");
        fragmentTransaction.commit();
        

        ==

        广告横幅的布局

        ==

        <?xml version="1.0" encoding="utf-8"?>
        <RelativeLayout 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">
            <com.google.android.gms.ads.AdView
                android:id="@+id/adView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                ads:adSize="SMART_BANNER"
                ads:adUnitId="@string/banner_ad_unit_id">
            </com.google.android.gms.ads.AdView>
        </RelativeLayout>
        

        ==

        注意:确保在使用此方法时确实要这样做,例如,在“设置”和“关于”等某个页面上显示横幅广告时,用户体验不佳。您可以通过将AdView的可见性设置为VISIBLE / INVISIBLE / GONE来轻松隐藏/显示广告横幅。

答案 1 :(得分:1)

我将Admob放在自己的片段中,只是在活动中重用该片段。