现在我的广告覆盖了我的网页浏览的顶部部分,我希望它们显示在网页浏览的上方,然后webview就会在它们下面启动..这是我的布局文件:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.music.promotion.free"
xmlns:ads="http://schemas.android.com/apk/res/com.music.promotion.free"
android:layout_width="fill_parent"
android:background="#000000"
android:layout_height="fill_parent"
>
<WebView android:id="@+id/web_engine"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="a14dc0dc7949bae"
ads:adSize="BANNER"/>
<LinearLayout android:id="@+id/footer" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_alignParentBottom="true" style="@android:style/ButtonBar">
<Button android:id="@+id/btnPause" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"
android:text="Pause" />
<Button android:id="@+id/btnPlay" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"
android:text="Play" />
我试过这个,现在它们似乎根本没出现......
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.music.promotion.free"
xmlns:ads="http://schemas.android.com/apk/res/com.music.promotion.free"
android:layout_width="fill_parent"
android:background="#000000"
android:layout_height="fill_parent"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="50dp">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="a14dc0dc7949bae"
ads:adSize="BANNER"/>
</LinearLayout>
<WebView android:id="@+id/web_engine"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
答案 0 :(得分:0)
广告视图在创建视图时没有实际高度。所以它将是0dp高,然后填充时将放在您的Web视图之上。您需要在xml中为广告预留一个位置。横幅广告高50dp。将此com.google.ads.AdView包裹在此线性布局中以进行修复。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="50dp">
答案 1 :(得分:0)
我通过将其置于相对布局中来修复此问题:
<LinearLayout android:id="@+id/footer" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_alignParentBottom="true" style="@android:style/ButtonBar">
<Button android:id="@+id/btnPause" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"
android:text="Pause" />
<Button android:id="@+id/btnPlay" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"
android:text="Play" />
</LinearLayout>
<WebView android:id="@+id/web_engine"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@id/footer"
/>