How to put AdView in ConstraintLayout at bottom and below other stuff?
问题 I'm trying to migrate from RelativeLayout to ConstraintLayout but I'm having problems adding the AdMob AdView to the bottom and the rest of the content above it. For example, using RelativeLayout was that simple. You only need to put android:layout_alignParentBottom="true" on the AdView and android:layout_above="@+id/adView" on the view which is containing the stuff. I'm trying to understand how to migrate this sample code and these two lines of code to the equivalent using a ConstraintLayout