Im trying to get the Google Ads adview on every tab of my tabhost, but its not working. If I place the adview in the main.xml, I can see the adview on every tab. But the problem then is that the views (buttons) are showing above the adview, so I cant see the ad anymore?

Main.xml:

<?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/com.this.app"
              android:layout_width="fill_parent"    android:background="@drawable/backgroundnew" 
                        android:layout_height="fill_parent"> 
        <LinearLayout android:orientation="vertical" 
  android:layout_height="fill_parent" 
  android:layout_width="fill_parent" > 
<TableLayout  android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_parent">


    <TabHost xmlns:android="http://schemas.android.com/apk/res/android" 

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

    <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="fill_parent">

           <include layout="@layout/tab1"/>
           <include layout="@layout/tab2"/>
           <include layout="@layout/tab3"/>
           <include layout="@layout/tab4"/>

        </FrameLayout>

    </LinearLayout>

</TabHost>

    </TableLayout>
    </LinearLayout>
</RelativeLayout>

tab1.xml

    <?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/com.this.app"
                  android:layout_width="fill_parent" 
                      android:id="@+id/tab1"
                  android:layout_height="fill_parent" > 

          <com.google.ads.AdView android:id="@+id/adView" 
                             android:layout_width="wrap_content" 
                             android:layout_height="wrap_content" 
                             android:layout_alignParentBottom="true" 
                             ads:adUnitId="xxx" 
                             ads:adSize="BANNER"
                            /> 

       <ScrollView android:id="@+id/scrollview1" 
      android:layout_height="fill_parent" 
      android:layout_width="fill_parent" 
      android:layout_above="@id/adView"> 

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

    <TableRow>
           <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="1"/>
           <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="2"/>
    </TableRow>       

    </TableLayout>
      </LinearLayout> 
    </ScrollView>
    </RelativeLayout> 
link|improve this question
where do u want to see the ads below or above tabs.Please specify the location of ads – Shahzad Imam Feb 20 at 18:23
@Shahzad below the tabs (at the bottom of the screen). – Bldjef Feb 20 at 18:25
feedback

1 Answer

Lets try this layout.It is always below the frame layout.Hope it helps.

<?xml version="1.0" encoding="utf-8"?>

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


    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@android:id/tabs"
        android:layout_above="@+id/tv"
         >

    </FrameLayout>

    <TextView android:layout_width="match_parent"
        android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:text="Ads"
            android:id="@+id/tv"/>


    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@android:id/tabcontent"
        android:layout_alignParentTop="true"
        android:paddingTop="-10dip" >

    </TabWidget>
</RelativeLayout>

link|improve this answer
Hm, but I need the scrollview for scrolling and the other layouts for the buttons. Else it wont work. – Bldjef Feb 20 at 19:13
Please try to make the question clear.Which type of layout u need??????? – Shahzad Imam Feb 20 at 19:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.