안드로이드에서 웹뷰 하단에 애드몹을 배치하려고 했는데. 잘안되어서 카카오 오픈톡방에서 방법을 여쭤본 결과


<WebView
    android:layout_height="1dp"
    android:layout_width="match_parent"
    android:id="@+id/webView"
    android:layout_weight="1"
/>

<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:layout_gravity="center_horizontal"
    ads:adSize="BANNER"
    ads:adUnitId="@string/banner_ad_unit_id_choice"

/>

이런식으로 하면된다.

비율가지고 자리를 차지해먹는모양.