如何在顶部的图像视图下方对齐图像按钮

How to align image button right under imageview which is at the top

这是我的整个 xml 文件。我无法对齐位于顶部的 imageview 底部的图像按钮

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".Pokemon$PlaceholderFragment"
style="@style/Base.TextAppearance.AppCompat.Display1"
android:clickable="true"
android:background="@drawable/monstermmorpg_android_bg">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageView"
    android:src="@drawable/application_text"
    android:adjustViewBounds="true"
    android:layout_alignParentTop="true"
 />

<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageButton"
    android:background="@null"
    android:src="@drawable/image_button"
    android:adjustViewBounds="false"
    android:scaleType="centerInside"
 />

这是它的显示方式:我希望它位于显示在顶部的 imageview 下

非常感谢,我正在使用 android studio,最新版本是 windows 8.1 - android 版本 2.3 api 9

添加

android:layout_below="@id/imageView"

到 ImageButton。