Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7566727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:29:14+00:00 2026-05-30T14:29:14+00:00

https://i.stack.imgur.com/lbs7l.png I’m trying to setup admob below the background, but I keep getting admob

  • 0

https://i.stack.imgur.com/lbs7l.png

I’m trying to setup admob below the background, but I keep getting admob on top of the background like this .
https://i.stack.imgur.com/YJXU2.png

So what happened is I have a button alignedParentBottom=”true”
but the ad is keep covering the button.

<RelativeLayout 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" >

<Button
    android:id="@+id/backButton"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/back"
    android:textSize="40sp"
     android:layout_alignParentBottom="true"
    ></Button>

<ScrollView
    android:id="@+id/ScrollView1"

    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:layout_alignParentTop="true"
    android:layout_above="@id/backButton"        
     >

 <TextView
     android:id="@+id/TextView1"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:textSize="20sp"

    android:text="@string/helphelp"></TextView>
</ScrollView>


<com.google.ads.AdView android:id="@+id/adView2"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="MY_UNIT_ID"
                     ads:adSize="BANNER"
                     ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
                     ads:loadAdOnCreate="true"
                     android:layout_below="@id/backButton"></com.google.ads.AdView>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:29:16+00:00Added an answer on May 30, 2026 at 2:29 pm

    You can create a second RelativeLayout – the inner one will have all of your main layout content, and the outer one will hold your layout content and the AdView. Simply set the AdView to the bottom, and set your RelativeLayout content above the AdView, and it will force the back button up when the ad comes back.

    I have provided the code here for your convenience.

    <RelativeLayout 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" >
        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            android:layout_above="@+id/adView2">
            <Button
                android:id="@+id/backButton"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/back"
                android:textSize="40sp"
                android:layout_alignParentBottom="true">
            </Button>
            <ScrollView
                android:id="@+id/ScrollView1"
                android:layout_height="wrap_content"
                android:layout_width="fill_parent"
                android:layout_alignParentTop="true"
                android:layout_above="@id/backButton">
                <TextView
                    android:id="@+id/TextView1"
                    android:layout_height="wrap_content"
                    android:layout_width="fill_parent"
                    android:textSize="20sp"
                    android:text="@string/helphelp">
                </TextView>
            </ScrollView>
        </RelativeLayout>
        <com.google.ads.AdView android:id="@id/adView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            ads:adUnitId="MY_UNIT_ID"
            ads:adSize="BANNER"
            ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
            ads:loadAdOnCreate="true">
        </com.google.ads.AdView>
    </RelativeLayout>
    

    Side note: Make sure your UI elements aren’t too close to the ads; that may encourage accidental clicks, and is against AdMob’s ToS.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

(This question could be better off on math, but im not sure) https://i.stack.imgur.com/ujPJG.png This
one small issue in my movieplayer..![movieplayer shows like this] 1 : https://i.stack.imgur.com/WujxB.png but i
https://i.stack.imgur.com/FZyiq.jpg I've designed this layout and it works fine in my mind, but when
I have a plot like this: https://i.stack.imgur.com/zdike.png I need the data coordinates of points
Here is a screenshot of what I'm working with at the moment... https://i.stack.imgur.com/45GX9.png The
https://i.stack.imgur.com/JU3e2.jpg So I am uploading some images but when I run it against some
I want to create a DashBoard in my Application like that https://i.stack.imgur.com/uDwlf.png . The
https://i.stack.imgur.com/SEFNd.png I'm new to HTML5 so my code is likely to be messy, I'm
i have this simplified Model: https://i.stack.imgur.com/d2WsV.png I have these Elements ordered in an NSOutlineView
As seen in the Monitor for memory diagram (https://i.stack.imgur.com/sBKzO.png), around 4:35PM is when I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.