Admob 不足以 Space 用于横幅广告
Admob Not Enough Space for Banner Ad
我不知道如何解决这个问题。我遇到错误
Not enough space to show ad. Needs 360x50 dp, but only has 350x582 dp
.
这是我的布局代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="5dp"
android:orientation="vertical"
>
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine"
android:maxLines="4"
android:textSize="20dp" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Copy" />
<ImageView
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:id="@+id/imageView1"
android:onClick="keyBoardClick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/keyboard" />
<Button
android:id="@+id/button2"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Share" />
</LinearLayout>
<GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:numColumns="8" >
</GridView>
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="myAdMobID" >
</com.google.android.gms.ads.AdView>
哪里出了问题,因为我在 adView 上的宽度为 match_parent,高度为内容换行。
宽度和高度都应使用 wrap_content
。
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="myAdMobID" >
AdMob 可能会也可能不会抱怨 "having enough room",但如果父视图中有填充,它就不会显示。您需要将想要填充的视图包装在另一个布局中,或者直接向该特定视图添加填充。
请从父布局中移除内边距:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
>
我不知道如何解决这个问题。我遇到错误
Not enough space to show ad. Needs 360x50 dp, but only has 350x582 dp .
这是我的布局代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="5dp"
android:orientation="vertical"
>
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine"
android:maxLines="4"
android:textSize="20dp" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Copy" />
<ImageView
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:id="@+id/imageView1"
android:onClick="keyBoardClick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/keyboard" />
<Button
android:id="@+id/button2"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Share" />
</LinearLayout>
<GridView
android:id="@+id/gridView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:numColumns="8" >
</GridView>
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="myAdMobID" >
</com.google.android.gms.ads.AdView>
哪里出了问题,因为我在 adView 上的宽度为 match_parent,高度为内容换行。
宽度和高度都应使用 wrap_content
。
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="myAdMobID" >
AdMob 可能会也可能不会抱怨 "having enough room",但如果父视图中有填充,它就不会显示。您需要将想要填充的视图包装在另一个布局中,或者直接向该特定视图添加填充。
请从父布局中移除内边距:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
>