当设备的宽度为320但小于它不会显示的宽度时,admob工作正常。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/layout_adsmob"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10px"
android:background="#00ffffff"
android:visibility="gone" >
<com.google.ads.AdView
android:id="@+id/adsmob"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="MY_AD_UNIT_ID"
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR,TEST_DEVICE_ID" />
答案 0 :(得分:0)
您将根元素可见性设置为gone
。设置XML文件中任何元素的可见性也会隐藏标记的子元素。
根本不设置可见性。默认为VISIBLE
,因此无需手动设置
如果是这样,并且您希望在加载广告之前将其隐藏,请以编程方式更改可见性:
someView.setVisibility(View.VISIBLE);