Относительная проблема размещения.ImageView прокручивается вверх, когда отображается клавиатура - PullRequest
0 голосов
/ 29 сентября 2011

Я пытаюсь показать ImageView под AdView, как изображение 2 . Проблема в том, что EditText активен, отображается клавиатура, и если AdView загружен, все работает отлично, но когда AdView не загружен, ImageView прокручивается вверх по экрану, как изображение 1

Вот мой xml-макет:

<?xml version="1.0" encoding="utf-8"?>
<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" android:gravity="top">

<com.google.ads.AdView android:layout_width="wrap_content"
    android:id="@+id/adView" android:layout_height="wrap_content"
    ads:adUnitId="XXXXXXXXX" ads:adSize="BANNER" ads:loadAdOnCreate="true"
    android:layout_alignParentTop="true" android:layout_centerHorizontal="true" />

<ImageView android:src="@drawable/frame008" android:id="@+id/imageView1"
    android:scaleType="centerInside" android:layout_height="wrap_content"
    android:adjustViewBounds="true" android:focusable="false"
    android:layout_width="match_parent" android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true" android:layout_marginTop="50dip"></ImageView>

Кнопка EditText и Submit:

<RelativeLayout android:id="@+id/linearLayout4"
    android:orientation="horizontal" android:layout_height="wrap_content"
    android:layout_width="fill_parent" android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true">
    <Button android:text="Submit" android:id="@+id/button2"
        android:onClick="submit" android:layout_height="wrap_content"
        android:layout_width="wrap_content" android:layout_alignParentRight="true"></Button>
    <EditText android:layout_width="wrap_content" android:id="@+id/editText1"
        android:layout_height="wrap_content" android:layout_alignParentLeft="true"
        android:layout_toLeftOf="@id/button2">
        <requestFocus></requestFocus>
    </EditText>

</RelativeLayout>

Спасибо за ваше время !!

When ads doesn't load.

When ads loads

1 Ответ

0 голосов
/ 29 сентября 2011

Фрагмент кода ниже должен быть тем, что вам нужно, чтобы расположить представления так, как вы хотите:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout >

    <com.google.ads.AdView
        android:id="@+id/adView"
        android:layout_alignParentTop="true" />

    <RelativeLayout 
        android:id="@+id/linearLayout4"
        android:layout_alignParentBottom="true">
    </RelativeLayout>

    <ImageView 
        android:layout_below="@+id/adView"
        android:layout_above="@+id/linearLayout4">
    </ImageView>

</RelativeLayout>
...