I tried setting the left & right padding margins to 0 per Not enough space to show ad (AdMob)
Error: W/Ads: Not enough space to show ad. Needs 411x49 dp, but only has 411x49 dp.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MobileAds.initialize(this, String.valueOf(R.string.ad_app_id));
mAdView = findViewById(R.id.adView);
AdRequest.Builder b = new AdRequest.Builder();
b.addTestDevice((AdRequest.DEVICE_ID_EMULATOR));
b.addTestDevice("<Redacted>");
AdRequest adRequest = b.build();
mAdView.loadAd(adRequest);
initialiseView();
}
private void initialiseView() {
LinearLayout mLinearLayout = findViewById(R.id.linearLayout);
mGameView = new GameView(this);
mLinearLayout.addView(mGameView, 0);
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="0dp"
android:paddingRight="0dp"
>
<LinearLayout
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:layout_weight="512"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/linearLayout">
</LinearLayout>
<RelativeLayout
android:layout_weight="1"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical">
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ca-app-pub-XXX">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
</LinearLayout>
On a Nexus5X, I see "Test Ad":
Update: I am seeing this bizarre error message:
ar W/Ads: Not enough space to show ad. Needs 411x49 dp, but only has 411x49 dp.
???
In xml file, Change your root layout to RelativeLayout from Linear Layout and also remove "android:layout_weight="512" from first child LinearLayout.