0

我使用 eclipse 制作了我的第一个 Android 应用程序。现在我需要安排布局,因为我的布局现在在主要内容上显示 Google AdMob 广告,在 WebView 上。此外,当我旋转手机并进入横向模式时,AdMob 广告仅在屏幕的一半上。我该如何解决这个问题以及如何让 Google AdMob 拥有自己的空间,就像进度条一样,而不是显示在 WebView 上。这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ProgressBar
android:id="@+id/web_view_progress_bar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="15dip"
android:padding="2dip"
android:progressDrawable="@drawable/colorprogress" />

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ImageView
android:id="@+id/splash_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/desc"
android:scaleType="fitXY"
android:src="@drawable/splash"
android:visibility="visible" />

<WebView android:id="@+id/web_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:visibility="gone" />

<com.google.ads.AdView android:id="@+id/adView"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   ads:adUnitId="a1500108406597c"
   ads:adSize="BANNER"
   ads:loadAdsOnCreate="true"
   android:layout_alignParentBottom="true"/>

</RelativeLayout>
</LinearLayout>
4

1 回答 1

0

您已将 放在 中AdViewRelativeLayout这会将其放在其中的项目之上。

你想把它放在LinearLayout唯一的;我已经向你展示了如果你想要在ProgressBarand之间你必须做什么RelativeLayout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

    <ProgressBar
    android:id="@+id/web_view_progress_bar"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="fill_parent"
    android:layout_height="15dip"
    android:padding="2dip"
    android:progressDrawable="@drawable/colorprogress" />

    <com.google.ads.AdView android:id="@+id/adView"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       ads:adUnitId="a1500108406597c"
       ads:adSize="BANNER"
       ads:loadAdsOnCreate="true"
       android:layout_alignParentBottom="true"/>

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

        <ImageView
        android:id="@+id/splash_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@string/desc"
        android:scaleType="fitXY"
        android:src="@drawable/splash"
        android:visibility="visible" />

        <WebView android:id="@+id/web_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="none"
        android:visibility="gone" />

    </RelativeLayout>
</LinearLayout>

当然,如果您想将其放在底部,请将其放在</LinearLayout>标签上方。

于 2012-08-22T17:04:37.523 回答