我在获得以下布局时遇到了麻烦,有人可以帮助获得以下布局吗?总背景应该是白色的。感谢任何帮助
下面是我的xml文件
<?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:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/askabud" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="5dp" >
</LinearLayout>
<EditText
android:id="@+id/fbedittext"
android:layout_width="250dp"
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:layout_below="@+id/imageView1"
android:layout_marginTop="33dp"
android:ems="10"
android:gravity="top"
android:hint="@string/saysomething"
android:lines="6"
android:paddingRight="5dp"
android:scrollHorizontally="true" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/fbcancel" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/fbedittext"
android:layout_toLeftOf="@+id/imageView2"
android:src="@drawable/facebooks1" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/fbedittext"
android:layout_alignLeft="@+id/imageView3"
android:layout_marginBottom="18dp"
android:src="@drawable/people" />
</RelativeLayout>
有人可以建议我如何获得用于编辑文本和下拉菜单的圆角。谢谢