我试图永久地将广告放在布局的底部。我正在使用tabhost,当我将广告放在freamelayout上方时,它会在顶部显示广告。我想将此广告放在底部。这是我的布局文件的代码。
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_splash"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<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="match_parent"
/>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="480dp"
android:layout_height="100dp"
ads:adUnitId="XXXXXXXXX"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, XXXXXXXX"
ads:loadAdOnCreate="true"/>
</LinearLayout>
</TabHost>
当我将广告视图放在框架布局之前时,它会向我显示广告,但我想在tabhost的底部显示广告。
谢谢, 阿曼
答案 0 :(得分:2)
问题是,FrameLayout的高度设置为match_parent。
你需要做的是,将FrameLayout的layout_height设置为0dip,然后指定layout_weight为1.这将指示它填充空间。
答案 1 :(得分:1)
试试这段代码:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_splash">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<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="0dp"
android:layout_weight="1"
/>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="480dp"
android:layout_height="100dp"
ads:adUnitId="a15131e8f06efd9"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, XXXXXXXX"
ads:loadAdOnCreate="true"/>
</LinearLayout>