Android AdMob - 对齐/定位广告

时间:2011-01-25 19:02:29

标签: android alignment position advertising admob

如何在屏幕底部显示广告?

我已经尝试将重力设置到底部,但它仍然不会让步。

当前页面代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent"
 android:background="@color/Background_Color">
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" 
  android:orientation="vertical"
  xmlns:myapp="http://schemas.android.com/apk/res/com.x.x" >
  <TextView android:id="@+id/out_text" 
   android:layout_height="fill_parent"
   android:layout_width="fill_parent"
   android:textSize="30dip" 
   android:textColor="@color/Text_Color" />

  <com.admob.android.ads.AdView
   android:id="@+id/ad"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   myapp:backgroundColor="#000000"
   myapp:primaryTextColor="#FFFFFF"
   myapp:secondaryTextColor="#CCCCCC"
   myapp:refreshInterval="10"
   android:visibility="visible" />
 </LinearLayout>
</ScrollView>

非常感谢任何帮助!

2 个答案:

答案 0 :(得分:2)

尝试在TextView中添加权重。

 android:layout_weight="1"

这意味着,它将占用父母的任何开放空间。

并将其添加到ScrollView:

android:fillViewport="true"

答案 1 :(得分:2)

尝试使用RelativeLayout,并为AdView提供android:layout_alignParentBottom="true"的属性。

此外,重力仅影响内容,layout_gravity影响视图本身。 (你可能知道,只是指出来)