简单布局:右边三个按钮并排靠右,左边一个输入框填满其他空间,多谢

求一个简单布局:右边三个按钮并排靠右,左边一个输入框填满其他空间,谢谢如我的一行要显示四个控件TextView

求一个简单布局:右边三个按钮并排靠右,左边一个输入框填满其他空间,谢谢
如我的一行要显示四个控件
TextView1,Button1,Button2,Button3
要求是
Button1,Button2,Button3 靠屏幕的右边显示
TextView1 靠左边显示,并占满剩下的所有空间


谢谢
[解决办法]
<?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" >

    <LinearLayout
        android:id="@+id/right"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="3dp"
        android:orientation="vertical" >
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="btn1" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="btn2" />

        <Button
            android:layout_width="wrap_content"


            android:layout_height="wrap_content"
            android:text="btn3" />
    </LinearLayout>

   <TextView 
       android:id="@+id/text"
       android:background="#336699"
       android:layout_width="wrap_content"
       android:layout_height="fill_parent"
       android:layout_alignParentLeft="true"
       android:layout_toLeftOf="@+id/right"
       android:text=""
       />
</RelativeLayout>
简单布局:右边三个按钮并排靠右,左边一个输入框填满其他空间,多谢