2013-04-05 39 views
1

我的添加引起了一些視圖尺度問題。我通過使android:layout_width fill_parent insted wrap_content解決了這個問題。添加(AdMob)大小可能是fill_parent insted wrap_content?

<com.google.ads.AdView 
       android:id="@+id/ad" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       ads:adSize="BANNER" 
       ads:adUnitId="axxxxxx" 
       ads:loadAdOnCreate="true" /> 

任何問題,我應該知道或它的好嗎?

回答

3

Fill_parent上的寬度是好的,只要你明白它的意思。基本上,廣告將是320x50,但視圖將跨越整個寬度,因此您不能在該區域放置任何其他視圖。

如果您要全寬,您可能會考慮使用SMART_BANNER廣告尺寸,該廣告尺寸會用廣告填充整個空間。

相關問題