RelativeLayout

RelativeLayout 是一个显示相对位置的子视图的 ViewGroup。默认情况下,所有子视图都在布局的左上角绘制,因此你必须使用 RelativeLayout.LayoutParams 提供的各种布局属性来定义每个视图的位置。每个布局属性的值是一个布尔值,用于启用相对于父 RelativeLayout 的布局位置,或者一个 ID,用于引用布局中应该放置视图的另一个视图。

例:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:src="@mipmap/ic_launcher" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/editText"
        android:layout_toRightOf="@+id/imageView"
        android:layout_toEndOf="@+id/imageView"
        android:hint="@string/hint" />

</RelativeLayout>

以下是截图如下:

http://i.stack.imgur.com/c7iEEl.jpg