2011-11-29 66 views
0

我正在使用MobClix顯示廣告,但有些廣告並未居中對齊,但它們左對齊。我已經將視圖的contentMode設置爲UIViewContentModeCenter,但它不工作,如何解決這個問題。 enter image description hereMobclix廣告未被對中?

(在圖像的端部的一些白色的空間)

回答

0

我在Android使用MobclixMMABannerXLAdView從Mobclix的SDK和它具有固定尺寸。 至於我的佈局調整,以在屏幕中心顯示廣告。對於RelativeLayout, 以下代碼工作正常:

<com.mobclix.android.sdk.MobclixMMABannerXLAdView 
     android:id="@+id/advertising_banner_view" 
     android:layout_height="50dp" 
     android:layout_width="match_parent" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true" 
     android:tag="adspace" />