我試圖將廣告永久放置在佈局的底部。我使用的是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>
當我在框架佈局之前放置adview時,它向我顯示廣告,但我想在tabhost底部顯示廣告。
感謝, 阿曼