我有一个AdMob横幅,它正确显示但是太小了。它不适合屏幕的宽度。这在模拟器和真实设备上都会发生。任何人都可以帮我解决这个问题吗? XML代码:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/usernameLab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Username:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="35px" />
<EditText
android:id="@+id/usernameField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName" />
<TextView
android:id="@+id/passwordLab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password:"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textSize="35px" />
<EditText
android:id="@+id/passwordField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
<Button
android:id="@+id/login"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Login" />
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Remember me?" />
<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Parent Account?" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="124dp"
android:src="@drawable/cool" />
<LinearLayout
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="..."
ads:loadAdOnCreate="true"
/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
根据您发布的图片,广告以320 x 50像素显示,您的整体分辨率为480 x 800.我将假设像素密度为1.0(这将是提取的LCD密度为160, AVD设备属性下的设置)。这是一种不寻常的密度。绝大多数手机的像素密度为1.5(LCD的密度为240),屏幕宽度为320,并且设置正确。
如果您想确保广告始终填满屏幕宽度,则有两种方法。在Honeycomb和up(API Level 11+)上,您可以使用setScaleX()和setScaleY()来缩放它。您必须获得屏幕宽度并适当缩放。对于姜饼和早期,你必须弄清楚缩放。我不知道那里有什么选择。缩放将导致一些像素化,通常人们更喜欢只是将广告居中而不是拉伸它。
TL; DR:大多数人会看到它很好,你可以把它放在中心或自己拉伸
答案 1 :(得分:1)
看看这个:
https://developers.google.com/mobile-ads-sdk/docs/android/intermediate
在大多数情况下,最好的方法是使用SMART_BANNER尺寸,让Admod SDK处理横幅尺寸,确保为最高横幅留出至少90像素的高度。