0

我有一个用于广告的线性布局。此代码适用于 Ad Mob。Ad Mob 横幅居中。Galaxy Nexus 和三星 Galaxy y 二重奏看起来不错。但它不适用于 InMobi 广告。在 Galaxy Nexus 上,横幅位于左侧,而在三星 Galaxy Duos 上,横幅位于左侧,并且略小一些。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/layoutAdView"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true" >
    </LinearLayout>

</RelativeLayout>

我最大的问题是,横幅在左边。

4

2 回答 2

1

我解决了左问题。将线性布局更改为相对布局。

于 2012-11-18T11:24:28.867 回答
1

我面临着同样的问题。

您可以在 xml 中将 adView 定义为,而不是拥有父布局并将您的 adView 添加到其中

<com.inmobi.androidsdk.IMAdView android:id="@+id/imAdview" android:layout_width="320dp" android:layout_height="50dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" adSize="15" appId="*******************************"/>

获取它的一个实例并加载广告。这应该可以解决问题。

于 2012-11-27T13:06:21.880 回答