Я пытаюсь показать 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>
Спасибо за ваше время !!