Android Question Positioning BannerAds under BottomNavigationView

trueboss323

Active Member
Licensed User
Longtime User
I would like to place my banner ads so it is always under the Bottom Navigation (App Compact / DesignSupport) bar. I've been stuck how to do this since there's no way to position the banner ad using the designer. Or is there a better way to do this?

So far this is what I did under the ReceiveAd event.

B4X:
Sub BannerAd_ReceiveAd
    Log("Received")

    DSBottomNavigationView1.Top = (BannerAd.Top-BannerAd.Height)
    Page1.Height = (DSBottomNavigationView1.Top - DSBottomNavigationView1.Height)
    Page2.Height = (DSBottomNavigationView1.Top - DSBottomNavigationView1.Height)
    Page3.Height = (DSBottomNavigationView1.Top - DSBottomNavigationView1.Height)
End Sub

I'm not sure if this is the most convenient way to do it , please correct me if it's wrong.
 
Last edited:

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top