2011-11-29 49 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" />