Я хочу разместить изображение справа от вида.Для этого я пытаюсь использовать что-то вроде
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
...some other elements
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/imageIcon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:src="@drawable/image_icon" >
</ImageView>
</LinearLayout>
...
</RelativeLayout>
Выше, кажется, поместить изображение где-то в центре.Как убедиться, что изображение выровнено по правому краю независимо от того, находимся ли мы в портретном или альбомном режиме?
Спасибо!