相对于屏幕的两边、相对于屏幕的中间、多控件位于屏幕的右边

相对于屏幕的两边

<RelativeLayout android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_below="@id/btnLogin"
        >
        <TextView  style="@style/textview_small"
            android:text="注册Meng号"
            android:id="@+id/tvRegister"
            />

           <TextView style="@style/textview_small"
               android:text="忘记密码 "
               android:layout_alignParentRight="true"
               android:id="@+id/tvForgetPassword"

               />

    </RelativeLayout>

相对于屏幕的中间

<LinearLayout android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:id="@+id/ll"
        >
          <ImageView 
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:src="@drawable/qq"
              android:id="@+id/ivQQ"
              />
          <ImageView 
              android:layout_width="wrap_content"
              android:layout_marginLeft="20dp"
              android:layout_height="wrap_content"
              android:src="@drawable/wechat"
              android:id="@+id/ivWechat"
              />
          <ImageView 
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
               android:layout_marginLeft="20dp"
              android:src="@drawable/weibo"
              android:id="@+id/ivWeibo"
              />
  </LinearLayout>

多控件位于屏幕的右边

<RelativeLayout android:layout_width="match_parent"
       android:layout_height="50dp"

       >
       <LinearLayout android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:orientation="horizontal"
           android:layout_alignParentRight="true"
           >
       <ImageView android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:src="@drawable/favour"


           />
        <TextView android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:text="123456"
                   android:textSize="@dimen/text_size_small"
                   android:layout_marginLeft="10dp"
                   />
       <ImageView android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:src="@drawable/criticism1"
           android:layout_marginLeft="10dp"
           android:id="@+id/ivComment"
           />
        <TextView android:layout_width="wrap_content"
                   android:layout_height="wrap_content"
                   android:text="100人评论"

                   android:textSize="@dimen/text_size_small"

                   android:id="@+id/tvComment"
                   android:layout_marginLeft="10dp"
                   />
           <ImageView android:layout_width="wrap_content"
               android:layout_height="wrap_content"
                  android:src="@drawable/transmit1"
             android:layout_marginLeft="10dp"
               />
       </LinearLayout>
   </RelativeLayout>