在现有视图下添加片段

时间:2014-03-17 10:41:46

标签: android view fragment admob

我有一个包含AdView视图的fragmentActivity

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativePrincipal"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

 <com.google.android.gms.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:id="@+id/banner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    ads:adSize="BANNER"
    ads:adUnitId="**********" />

</RelativeLayout>

这个FragmentActivity将包含几个片段,我会在每个片段中显示AdView。有一种方法可以放置片段&#34;&#34; AdView,或者我需要为每个片段添加AdView,我会在FragmentActivity中使用吗?

1 个答案:

答案 0 :(得分:2)

  

有一种方法可以将片段放在“AdView ......”下面吗?

当然,你可以这样做:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

 <com.google.android.gms.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:id="@+id/banner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    ads:adSize="BANNER"
    ads:adUnitId="**********" />

 <RelativeLayout 
    android:id="@+id/relativePrincipal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@id/banner" >

</RelativeLayout>