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 7888887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T05:57:10+00:00 2026-06-03T05:57:10+00:00

I am adding an adMob banner to my app successfully. When banner appears I

  • 0

I am adding an adMob banner to my app successfully. When banner appears I need to get its height in order to resize all layout elements. I am using the event onReceivedAd, that is properly fired. However, alturaBanner is = 0. Then, how to get its height? thank you.

   /** Called when an ad is received. */
    @Override
    public void onReceiveAd(Ad ad) 
    {
        adView.setVisibility(View.VISIBLE);

        int alturaBanner = adView.getHeight();

        RelativeLayout.LayoutParams params1 = (android.widget.RelativeLayout.LayoutParams) browse2
        .getLayoutParams();

        params1.setMargins(0, alturaBanner, 0, 0);

      Log.d(LOG_TAG, "onReceiveAd");
      Toast.makeText(this, "onReceiveAd", Toast.LENGTH_SHORT).show();
    }
  • 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-06-03T05:57:11+00:00Added an answer on June 3, 2026 at 5:57 am

    getting the height of the view before it was prepared will always return you 0 .
    use the next code in order to get its correct size , no matter which device/screen you have:

    private static void runJustBeforeBeingDrawn(final View view, final Runnable runnable)
    {
        final ViewTreeObserver vto = view.getViewTreeObserver();
        final OnPreDrawListener preDrawListener = new OnPreDrawListener()
        {
            @Override
            public boolean onPreDraw()
            {
                runnable.run();
                final ViewTreeObserver vto = view.getViewTreeObserver();
                vto.removeOnPreDrawListener(this);
                return true;
            }
        };
        vto.addOnPreDrawListener(preDrawListener);
    }
    

    inside the given runnable , you can query the real size of the view.

    alternatively , you can use addOnGlobalLayoutListener instead of addOnPreDrawListener if you wish.

    another approach is to use onWindowFocusChanged (and check that hasFocus==true) , but that’s not always the best way ( only use for simple views-creation, not for dynamic creations)

    EDIT: Alternative to runJustBeforeBeingDrawn: https://stackoverflow.com/a/28136027/878126

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

Sidebar

Related Questions

Do i need to put android app to market first before adding admob or
I'm just getting started with adding admob to my android app and have started
I am trying to place Admob ads in my app, and I followed all
I am adding google admob banner as subview to appdelegate.now on certain page i
I have a completed app and I tried adding admob. I got the publisher
Using this project: https://github.com/dalexsoto/Monotouch-AdMob-Bindings I am adding the AdMob .a to my MonoTouch app.
I am having an issue with admob ads affecting my layout. my current app,
Adding more than one child to a WPF StatusBar results in poor layout with
Adding the row one by one in the button click.. (i tried but its
Adding member variables to a class certainly boosts the memory footprint of its instances

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.