在XML中添加TabHost下方的AdView

时间:2011-12-21 00:47:59

标签: android android-layout admob android-linearlayout android-tabhost

我想在TabHost下方直接获取AdView。 RelativeLayout确实允许android:layout_alignParentBottom="true"发生这种情况,但这与TabHost内容重叠,并且对于我在每个Tab中添加的ScrollView这样做(这可能适用于任何高度足够大的视图)

现在,我可以在屏幕上自己的单独空间中找到最接近TabHost和AdView的是使用此代码(如下所示),这样我就可以直接 TabHost ......如此接近,任何想法?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <com.google.ads.AdView
        android:id="@+id/ad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        ads:adSize="BANNER"
        ads:adUnitId="####"
        ads:loadAdOnCreate="true"
        ads:testDevices="####" />

    <TabHost
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />
        </LinearLayout>
    </TabHost>

</LinearLayout>

1 个答案:

答案 0 :(得分:4)

您应该让标签主持人填充广告后的剩余空间,例如

<TabHost
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="0dip" 
    android:layout_weight="1.0">

现在标签主持人会在广告系列结束后占用剩余空间。