2012-05-28 101 views
0

admob在設備寬度爲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

這是預期行爲根據[文檔](https://developers.google.com/mobile-ads-sdk/docs/android/intermediate#bannersizes) – Rajesh

+0

,但我把智能橫幅,橫幅沒有顯示在平板電腦大,只顯示320只有 –

+0

任何相關的LogCat消息?如果您使用智能橫幅廣告,則廣告需要整個屏幕寬度。您有沒有可能有左邊距或右邊距的廣告的其他父元素? –

回答

0

您設置根元素能見度gone。設置XML文件中任何元素的可見性也會隱藏標記的子元素。

只是不設置可見性。它默認爲VISIBLE,所以沒有必要手動設置

如果這樣做的目的,並且要保持它看不見,直到你加載廣告,以編程方式更改可視性:

someView.setVisibility(View.VISIBLE);