Я разработал приложение для Android. Мое приложение будет использоваться в ландшафтном режиме. Теперь я хочу разместить рекламу на левой стороне по вертикали. Является ли это возможным? если нет то пожалуйста как разместить его горизонтально вверху?
Мой макет
<?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="horizontal" android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView android:id="@+id/s1" android:layout_width="wrap_content"
android:src="@drawable/a_1" android:layout_height="wrap_content"
android:padding="2dp" />
<ImageView android:id="@+id/s2" android:layout_width="wrap_content"
android:src="@drawable/a_2" android:layout_height="wrap_content"
android:padding="2dp" />
<ImageView android:id="@+id/s3" android:layout_width="wrap_content"
android:src="@drawable/a_3" android:layout_height="wrap_content"
android:padding="2dp" />
<ImageView android:id="@+id/s4" android:layout_width="wrap_content"
android:src="@drawable/a_4" android:layout_height="wrap_content"
android:padding="2dp" />
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_alignParentBottom="true"
android:gravity="center" android:background="#00000000">
<TextView android:id="@+id/l" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:paddingLeft="20dp"
android:paddingRight="20dp" android:background="@drawable/letterbackground"
android:textColor="#FFFFFFFF" android:textSize="60sp"
android:shadowColor="#AA42d68b" android:shadowRadius="1.5"
android:shadowDx="5" android:shadowDy="5" android:text="A" />
</RelativeLayout>
<RelativeLayout android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/menu_widget" />
</RelativeLayout>
</RelativeLayout>